我正在尝试计算页面上的元素。它为almsot工作了整整一年都很好,但是现在我的方法总是给出错误的值,所以我的主张失败了。它给出不具有逻辑关系的随机数。
public int getCountOfResults (Webdriver webdriver) {
try {
waitUntilFoundByLocatorAndIsDisplayed(webDriver,By.xpath("//div[@class='hello']/div/a"));
List <WebElement> countProduct = webDriver.findElements(By.xpath("//div[@class='hello']/div/a"));
return countProduct.size();
} catch (Exception e) {
e.printStackTrace();
return 0;
}
}
答案 0 :(得分:-1)
您似乎很近。但是,我们没有方法waitUntilFoundByLocatorAndIsDisplayed()
的可见性。作为解决方案,您可以为visibilityOfAllElementsLocatedBy()
引入 WebDriverWait ,并且可以使用以下解决方案:
public int getCountOfResults (Webdriver webdriver) {
try {
waitUntilFoundByLocatorAndIsDisplayed(webDriver,By.xpath("//div[@class='hello']/div/a"));
List <WebElement> countProduct = new WebDriverWait(webDriver, 20).until(ExpectedConditions.visibilityOfAllElementsLocatedBy(By.xpath("//div[@class='hello']/div/a")));
return countProduct.size();
} catch (Exception e) {
e.printStackTrace();
return 0;
}
}