如果文本不在硒中的标签之外,该如何获取?
<i class="icon solr-icon icon-ic-city"></i>"Solapur"
所以我想在标签的帮助下获取文本,但问题是 文字“浦那”在i标签外面。我可以使用李标签,但我不这样做。任何人都可以告诉我如何获得文字吗? 在标签外?
<i class="icon solr-icon icon-ic-city"></i>"Solapur"
So I want to get the text with the help of i tag, but the problem is
text "Pune" is out side the i tag. I can make use of li tag but I do not to do that. Can anyone tell me how to get text if the text is
outside the tag?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不相信有一个特定的选择是硒,您必须选择封闭元素,然后检索
innerhtml
以获取源来获取源,包括您的文本,然后分析源很可能只是删除标签。element.get_attribute('innerhtml')
I dont believe that there is a specific option to do this is selenium and you would have to select the enclosing element and then retrieve the
innerHTML
to get the source including the text you are interesed and then parse the source by most likely just removing the tag.element.get_attribute('innerHTML')