AttributeError: 'WebDriver' object has no attribute 'find_element_by_xpath'
时间: 2023-10-30 13:57:23 浏览: 11
webdriver不能启动浏览器,报module ‘selenium.webdriver’ has no attribute”问题解决办法
5星 · 资源好评率100%
这个错误的意思是:WebDriver 对象没有名为 find_element_by_xpath 的属性。
这可能是因为你在使用错误的对象或方法,或者你的 Selenium WebDriver 没有正确地初始化。
检查你的代码,确保你在正确的对象上调用 find_element_by_xpath 方法。如果你确定你的代码没有错误,那么可能是你的 WebDriver 没有正确地初始化。你可以尝试重新初始化 WebDriver 并重新运行你的代码。
阅读全文