我正在为以下任务使用 html 敏捷性。
我想知道什么可以是xpath 查询来获取包含字符串搜索词的所有节点。它应该搜索元素的属性和内部文本。
<HTML>
<BODY >
<H1>Mr T for president</H1>
<div class="test">We believe the new president should be</div>
<div id="test">the awsome Mr T</div>
<div>
<H2>Mr T replies:</H2>
<p>test paragraph</p>
<p class="test">for Mr T</p>
</div>
</BODY>
</HTML>
假设我想让所有 html 元素在其属性或内部文本中都进行测试?