Selenium webdriver 不显示有关 noutfounding 元素的错误
Selenium webdriver doesn't show error about noutfounding element
我尝试在页面上查找文本 driver.findElement(By.xpath("//label[contains(text(),'Some text')]"));
我知道页面中没有显示文本。但系统接受测试为成功。
为什么系统不显示有关 NoSuchElementException 的错误
您不会使用 driver.findElement(By.xpath("//label[contains(text(),'Some text')]"));
的结果,例如不点击它 driver.findElement(By.xpath("//label[contains(text(),'Some text')]")).click();
或其他。
调用 driver.findElement(By.xpath("//label[contains(text(),'Some text')]"));
returns null
但您不以任何方式断言或验证结果。
我尝试在页面上查找文本 driver.findElement(By.xpath("//label[contains(text(),'Some text')]"));
我知道页面中没有显示文本。但系统接受测试为成功。
为什么系统不显示有关 NoSuchElementException 的错误
您不会使用 driver.findElement(By.xpath("//label[contains(text(),'Some text')]"));
的结果,例如不点击它 driver.findElement(By.xpath("//label[contains(text(),'Some text')]")).click();
或其他。
调用 driver.findElement(By.xpath("//label[contains(text(),'Some text')]"));
returns null
但您不以任何方式断言或验证结果。