在我编写的测试中,如果我想断言页面上存在 WebElement,我可以做一个简单的事情:
driver.findElement(By.linkText("Test Search"));
如果它存在,这将通过,如果它不存在,它将被炸毁。但现在我想断言链接不存在。我不清楚如何执行此操作,因为上面的代码不返回布尔值。
编辑这就是我想出自己的修复方法的方式,我想知道是否还有更好的方法。
public static void assertLinkNotPresent (WebDriver driver, String text) throws Exception {
List<WebElement> bob = driver.findElements(By.linkText(text));
if (bob.isEmpty() == false) {
throw new Exception (text + " (Link is present)");
}
}