我正在查看一些HTML如下
<tr>
<td nowrap><a href=" ... " >some link</a></td>
<td nowrap>col2</td>
<td nowrap>col3</td>
</tr>
我将其插入xpath测试器http://www.xpathtester.com/test并拒绝运行,因为输入无效。
我可以使用xpath选择上面输入的元素吗?
我正在使用selenium来点击第三个td
元素具有特定值的行中包含的链接,并认为xpath是一种简单的方法。
答案 0 :(得分:1)
不确定。正确的XPath是//tr[td[3][.='col3']/td[1]/a
:<a>
中包含的<td>
包含在<tr>
中,其中还包含col3
中的<td>
{{1}}。