我想从 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"])