提问者:小点点

如何使用selenium 2验证页面上的Web元素存在


我正在尝试使用selenium网络驱动程序2工具实现测试。

应用程序有元素,这些元素的存在是不可预测的。好的。在大多数情况下,它们存在于页面上。但在某些情况下,它们不是。以下方法单击不可预测的元素

public void clickTypeAheadDropdown(String typeAheadItem) {
    String xPathItemSelector = "//div[@class='gwt-SuggestBoxPopup']//td[text()='" + typeAheadItem + "']";
    WebElement dropDownItem = driver.findElement(By.xpath(xPathItemSelector));
    if (dropDownItem.isDisplayed() ) {
        dropDownItem.click();
    };

}

但是当元素不存在时它会失败。异常由方法river. findElement(By.xpath(xPathItemSelector)引发

你知道,我如何测试,元素是否存在于页面上?

附言:我假设捕获“未找到元素”异常不是一个好主意,因为它是在测试时间到期时引发的


共3个答案

匿名用户

我通常使用以下方法来测试元素是否存在。

public boolean isElementPresent(By element) {
   try {
       driver.findElement(element);
       return true;
   } catch (NoSuchElementException e) {
       return false;
   }
}

等待时间也可以在WebDriver上配置:

webDriver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

我不知道任何其他方法来做到这一点。由于您的页面可能会以不可预测的时间加载,因此您必须等待并使用超时。

匿名用户

您也可以使用FindElements执行此操作:

    /// <summary>
    /// Checks if the specified element is on the page.
    /// </summary>
    public static bool IsElementPresent(this IWebDriver driver, By element)
    {
        if (driver.FindElements(element).Count > 0)
            return true;
        else
            return false;
    }

    /// <summary>
    /// Checks if the specified element is on the page and is displayed.
    /// </summary>
    public static bool IsElementDisplayed(this IWebDriver driver, By element)
    {
        if (driver.FindElements(element).Count > 0)
        {
            if (driver.FindElement(element).Displayed)
                return true;
            else
                return false;
        }
        else
        {
            return false;
        }
    }

    /// <summary>
    /// Checks if the specified element is on the page and is enabled.
    /// </summary>
    public static bool IsElementEnabled(this IWebDriver driver, By element)
    {
        if (driver.FindElements(element).Count > 0)
        {
            if (driver.FindElement(element).Enabled)
                return true;
            else
                return false;
        }
        else
        {
            return false;
        }
    }

希望有帮助。

匿名用户

要检查元素是否存在,您可以使用以下代码:

if(driver.findElements(By.xpath("value")).size() != 0){
System.out.println("Element is Present");
}else{
System.out.println("Element is Absent");
}