AttributeError: 'WebDriver' object has no attribute 'find_element_by_id'
时间: 2023-10-23 14:50:07 浏览: 46
webdriver不能启动浏览器,报module ‘selenium.webdriver’ has no attribute”问题解决办法
5星 · 资源好评率100%
这个错误通常是因为你的 WebDriver 对象没有找到对应的元素。请确保你的元素 id 是正确的,并且你的 WebDriver 对象已经被正确地实例化和初始化。另外,你也可以尝试使用其他的定位方式,比如 find_element_by_css_selector 或 find_element_by_xpath 等,以便找到你需要的元素。
阅读全文