我知道我可以使用(driver.findElements(By.xpath("Xpath Value")).size() != 0);
但是,我使用的是页面对象模型,其全部目的是在单独的类中预定义WebElement,因此不必在测试类中使用“FindElements By”。
这是我目前所拥有的
if (objPage.webElement.isEnabled()){
System.out.println("found element");
}else{
System.out.println("element not found");
}
但是,这试图识别可能不存在的WebElement。当它不存在时,我得到:
最佳答案
最佳做法是按照您最初的建议进行操作,使用.findElements()
并检查.size != 0
,或者也可以使用我的首选项.isEmpty()
。您可以创建如下所示的Util函数,以测试元素是否存在。
public boolean elementExists(By locator)
{
return !driver.findElements(locator).isEmpty();
}
您也可以将其构建到页面对象中的函数中。