我正在尝试验证页面上是否存在痕迹路径。我能够验证第一个是碎片,因为它们是链接,可以使用以下xpath轻松找到:
.//div[@id = 'nav']/a[text() = 'Home']/following-sibling::a[text() = 'Acme Automation']
我想要包含路径的Group List部分,但由于文本属于前一个div,我似乎无法将其包含在上面的xpath中,因此它可以清楚地显示路径为Home ¬AcmeAutomation¬GroupList。我可以使用以下方法找到组列表文本:
.//div[@id = 'nav' and contains(normalize-space(), 'Group List')]
总的来说,我只是想验证面包屑路径而不仅仅是页面上的元素...任何指针?
<div id="nav">
Nav:
<a href="https://google.com">Home</a>
¬
<a href="https://google.com">Acme Automation</a>
¬ Group List
</div>