如何使用Java中的Selenium Web Driver获取类的CSS attribute = value

时间:2015-09-19 04:03:15

标签: java css selenium web driver

<input class="input input-edit" type="text" placeholder="main" value="10002" style="display: none;"></input>

我想从上面的代码中获取值10002。我尝试了很多版本但是无法获得这个类的价值:S ..

1 个答案:

答案 0 :(得分:1)

使用以下代码从input标记中获取属性。

driver.findElement(By.xpath("//*[@placeholder ='main'")).getAttribute("value");

OR,

driver.findElement(By.xpath("//input[@placeholder ='main'")).getAttribute("value");