在这上面阅读了一些SO帖子,但我找不到一个好的答案(可能不存在)所以我想我会再试一次。
我尝试使用Selenium和Python从元素中检索文本,但我想忽略该元素中的一些子元素。 HTML看起来像这样:
<div class="topclass">
<div class="textclass"> Here is some text
<a class="link1"> with a link here </a>
<a class="link2"> and another link here. </a>
and more text.
</div>
</div>
我需要的是检索文本&#34;这是一些文字和更多文字&#34;我忽略了两个子链接节点的文本。一对限制:
有没有办法用Selenium / Xpath做我需要的东西?