AttributeError: 'WebDriver' object has no attribute 'find_elements_by_tag_name'
时间: 2023-11-08 09:00:06 浏览: 150
WebDriver-Object
5星 · 资源好评率100%
AttributeError: 'WebDriver' object has no attribute 'find_elements_by_tag_name'错误是由于使用了错误的方法名导致的。正确的方法名应该是`find_elements_by_tag_name`而不是`find_element_by_tag_name`。您需要将代码中的方法名修改为`find_elements_by_tag_name`来解决这个问题。
阅读全文