如何提取文本“152”使用 Selenium 从文本节点
我需要为数字152提取xpath。我创建的xpath是我创建的xpath提取文本152之后的文本是“测试”,但不包括数字152。我需要获得此计数。
我正在使用以下XPath:
//div\[@class='filter_filter__5H_fi'\]/h1
不确定如何获得此功能。
I need to extract the xpath for the number 152. The xpath that I created extracts the text after 152 which is "Test" but excludes the number 152. I need to get this count.
I am using below xpath :
//div\[@class='filter_filter__5H_fi'\]/h1
Not sure how to get this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 HTML:
文本 152 和 < em>测试位于各自的文本节点内。
解决方案
要检索文本152,您可以使用以下任一方法定位器策略:
使用Java、cssSelector 和
firstChild
:使用Python, xpath 和
firstChild
:As per the HTML:
both the text 152 and Test are within their respective text nodes.
Solution
To retrive the text 152 you can use either of the following locator strategies:
Using Java, cssSelector and
firstChild
:Using Python, xpath and
firstChild
: