gpt4 book ai didi

python - 如何使用 Splinter 查找元素值?

转载 作者:太空宇宙 更新时间:2023-11-03 13:18:31 24 4
gpt4 key购买 nike

我有以下一段 html:

<p class="attrs"><span>foo:</span> <strong>foo</strong></p>
<p class="attrs"><span>bar:</span> <strong>bar</strong></p>
<p class="attrs"><span>foo2:</span> <strong></strong></p>
<p class="attrs"><span>description:</span> <strong>description body</strong></p>
<p class="attrs"><span>another foo:</span> <strong>foooo</strong></p>

我想使用 splinter 获取描述正文。我已经设法获得了 p 使用

的列表
browser.find_by_css("p.attrs")

最佳答案

xpath = '//p[@class="attrs"]/span[text()="description:"]/following-sibling::strong'
description = browser.find_by_xpath(xpath).first.text

关于python - 如何使用 Splinter 查找元素值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21802739/

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