标签: selenium selenium-webdriver
假设我的网页有一些值为三+ 7 = ,如图所示。如何使用Selenium获取三+ 7 = 文本?我想在控制台中打印它。
答案 0 :(得分:0)
使用getAttribute。例如,如果报价保留在属性“问题”中。 div标签。
String val = WebDriver.findElement(By.xpath("//div[@name='qws']")).getAttribute("ques") System.out.println(val);