AttributeError: 'WebDriver' object has no attribute 'find_element_by_id'
时间: 2023-10-30 10:57:51 浏览: 13
webdriver不能启动浏览器,报module ‘selenium.webdriver’ has no attribute”问题解决办法
5星 · 资源好评率100%
这个错误通常是因为 `find_element_by_id()` 方法被错误调用或WebDriver对象没有找到对应的元素。请确保已经正确地实例化了WebDriver对象,并且页面上确实有对应ID的元素。您可以尝试使用其他查找元素的方法,如 `find_element_by_css_selector()` 或 `find_element_by_xpath()`,来查找元素。如果问题仍然存在,请提供更多的代码和错误信息以便更好地帮助您解决问题。
阅读全文