在分裂中获取 href 值



我想从 Splinter 中的<a>元素中获取href值。

有没有 api 方法?

如果使用 find_by_* 方法选择元素,则这些方法返回的实例ElementList s。选择感兴趣的元素(很可能是ElementAPI实例)后,像字典一样访问该属性:

the_element['href']
#simplest possible working example demonstrating this in action
import splinter
b = splinter.Browser()
b.visit("http://www.google.com")
elems = b.find_by_tag("a")
for e in elems:
    print(e["href"])

相关内容

  • 没有找到相关文章

最新更新