AttributeError: 'WebDriver' object has no attribute 'find_elemen_by_xpath'
时间: 2023-11-07 11:05:00 浏览: 79
webdriver不能启动浏览器,报module ‘selenium.webdriver’ has no attribute”问题解决办法
5星 · 资源好评率100%
运行时报错AttributeError: 'WebDriver' object has no attribute 'find_elemen_by_xpath'是因为在代码中使用了错误的方法名。根据提供的引用,应该使用driver.find_element(By.XPATH, "value")来替代driver.find_element_by_xpath("value")。这样就可以解决该错误。
阅读全文