小编典典

使用Selenium 2在页面上查找文本

selenium

如何使用Selenium检查当前页面上是否存在给定的文本字符串?


阅读 399

收藏
2020-06-26

共1个答案

小编典典

代码是这样的:

def elem = driver.findElement(By.xpath("//*[contains(.,'search_text')]")); 
if (elem == null)  println("The text is not found on the page!");
2020-06-26