gpt4 book ai didi

python - 查找标题包含文本的 anchor

转载 作者:行者123 更新时间:2023-12-01 08:28:40 27 4
gpt4 key购买 nike

我想找到一个标题包含字符串的 anchor

这就是我所拥有的:

<a href="https://some.url/article1" title="Permalink to: &quot;Some Article 1&quot;">Some Article 1</a>
<a href="https://some.url/article2" title="Permalink to: &quot;Some Article 2&quot;">Some Article 2</a>

我需要捕获这些 anchor 。我所知道的是他们的标题包含“永久链接”一词。标题的其余部分有所不同。

我尝试过这个:

driver.find_elements_by_xpath('//a[@title[contains(text(), "Permalink")]]')

我期望获得元素,但我什么也没得到。

最佳答案

以下 xpath 应该可以工作

//a[contains(@title,'Permalink')]

关于python - 查找标题包含文本的 anchor ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54044625/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com