使用Selenium获取值

时间:2015-11-17 07:35:42

标签: selenium selenium-webdriver

web page form field

假设我的网页有一些值为三+ 7 = ,如图所示。如何使用Selenium获取三+ 7 = 文本?我想在控制台中打印它。

1 个答案:

答案 0 :(得分:0)

使用getAttribute。例如,如果报价保留在属性“问题”中。 div标签。

String val = WebDriver.findElement(By.xpath("//div[@name='qws']")).getAttribute("ques")
System.out.println(val);