Webdriver无法正确计算页面上的元素(JAVA SELENIUM)

时间:2019-12-05 12:42:54

标签: java selenium selenium-webdriver

我正在尝试计算页面上的元素。它为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;
    }
}

1 个答案:

答案 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;
    }
}