如果找不到元素,如何在selenium web驱动程序中添加验证

时间:2013-01-22 12:25:16

标签: java selenium

如果未找到元素或ID,如何在selenium web驱动程序中添加验证(使用“if”)

1 个答案:

答案 0 :(得分:0)

检查您要识别的元素是否存在。

将您尝试识别的元素放在try块中。如果你得到NoSuchElementException,则表示元素不存在。

抓住异常。

    public void isPresent()
    {
       try
       {
            driver.findElement(By.id("elementID"));
            System.out.println("element is present");
       }
       catch ( Exception e )
       {
            System.out.println("Element is not present");
            return;
       }
    }

这样你就可以处理异常了。