我的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 ")
但返回了空值
如果您需要更多信息,请与我们联系。在此先感谢
答案 0 :(得分:-1)
使用WebElement的 getText 方法,而不是使用 getAttribute 方法
Here与Selenium WebDriver的javadoc API类似