我有一些像这样的跨度:
<span> <span>foobar</span> <span>thisisatest</span> </span>
我正在尝试使用xpath来查找带有“thisisatest”的跨度.
我试过这个:
跨度[文本()= ‘thisisatest’]
它似乎没有用.
解决方法
你是不是在XPath的开头//错过了?一个斜杠意味着“一个根节点的子节点”.两个斜杠意味着“找到我的任何跨度与该文本”.
//span[text()='thisisatest']