AttributeError: WebDriver object has no attribute find_elements_by_tag_name
时间: 2023-12-14 07:15:05 浏览: 401
这个错误通常是因为你尝试使用 `find_elements_by_tag_name` 方法,但是 WebDriver 对象并没有这个方法。请检查你的代码,确保你正在使用正确的方法名和对象。
如果你已经确认你的代码没有问题,你可以尝试更新你的 WebDriver 版本或者使用其他选择器方法,比如 `find_elements_by_xpath` 或者 `find_elements_by_css_selector`。
相关问题
AttributeError: 'WebDriver' object has no attribute 'find_elements_by_tag_name'
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`来解决这个问题。
AttributeError: 'WebDriver' object has no attribute 'find_elements_by_css_selector'
这个错误通常是因为 WebDriver 对象没有找到指定的方法。可能原因是你的代码中有一些拼写错误或者你使用的 WebDriver 版本过于老旧,不支持该方法。
你可以尝试检查你的代码中是否正确拼写了该方法名,或者尝试更新你的 WebDriver 版本。同时,也可以尝试使用其他查找元素的方法,比如 find_elements_by_xpath 或者 find_elements_by_tag_name。
阅读全文
相关推荐








