使用 xpath 选择子菜单项
我正在尝试使用 XPATH 选择一个子菜单项。
子菜单项具有以下共同结构。
..../span/a[@class="button"]
在锚标记内,按钮的标题出现在 标记内,
例如
<span>
<a class="button" text="" href=".....">
<strong> submenu item 1 </strong>
</a>
</span>
如何使用 XPATH 选择其中包含“子菜单项 1”的锚标记?
预先感谢...
vamyip
I'm trying to select a sub-menu item using XPATH.
The submenu items have the following structure in common.
..../span/a[@class="button"]
Inside the anchor tag, the title of button is present inside a <strong/>
tag
e.g.
<span>
<a class="button" text="" href=".....">
<strong> submenu item 1 </strong>
</a>
</span>
How do I select the anchor tag which has "submenu item 1" inside it using XPATH?
thanks in advance...
vamyip
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用后代谓词:
请注意,这对外部周围的间距敏感。如果这是一个问题,您可以将其标准化:
You can use the descendant predicate:
Note that this is sensitive to the spacing around the outside. You can normalise it, if that's a problem: