我得到了这个 html:
<tr>
<td>
Some
<strong>
text
</strong>
<em>
and more
</em>
</td>
...
</tr>
我需要td
用这个文本定位我的元素Some text and more
。我知道我可以用这个 XPath 表达式得到这个文本:
//td//text()
但我找不到定位td
元素的解决方案。我试试这个:
//td[//text()='Some text and more']
但我得到错误。你知道一个有效的 XPath 表达式吗?