在使用request_html抓取时如何获取最后一个元素

时间:2019-04-08 08:09:37

标签: python web-scraping python-requests-html

我尝试用requests_html抓取一些内容。 有几个div标记,其中包含要删除的类名。 我知道您可以按原样使用first=True选择第一个元素:

driver.html.find(".company__item-value", first=True)

但是如果我只想选择类company__item的最后一个元素怎么办?

enter image description here

1 个答案:

答案 0 :(得分:0)

找到所有元素并获得最后一个find(...)[-1]