如何使用selenium webdriver从td元素获取值

时间:2013-04-24 12:47:52

标签: selenium-webdriver

我的HTML代码:

<tbody>


<tr style="display:none;">

<tr>

<td class="intervention">

<td class="notes-count">

<span class="ico ico--paper"></span>

2

</td>

现在我需要使用selenium webdriver获取值“2”。请帮我。我使用了xpath "//div/table/tbody/tr[2]/td[2]/" and getattribute("value ")但返回了空值

如果您需要更多信息,请与我们联系。在此先感谢

1 个答案:

答案 0 :(得分:-1)

使用WebElement的 getText 方法,而不是使用 getAttribute 方法

Here与Selenium WebDriver的javadoc API类似