attributeerror: module 'selenium.webdriver' has no attribute 'chrome'
时间: 2023-04-24 17:00:38 浏览: 131
这个错误提示是因为在使用selenium.webdriver时,调用了chrome属性,但是该模块中并没有chrome属性。可能是因为没有正确安装ChromeDriver或者版本不匹配导致的。需要检查ChromeDriver的安装和版本,并确保与selenium.webdriver匹配。
相关问题
AttributeError: module 'selenium.webdriver.chrome.webdriver' has no attribute 'chrome'
这个错误通常是因为你在使用selenium webdriver时,将浏览器类型设为了"chrome"而不是"Chrome"。请确保你的代码中浏览器类型的名称与实际的浏览器类型名称相匹配,例如:
```
from selenium import webdriver
driver = webdriver.Chrome() # 注意这里的浏览器类型是 "Chrome" 而不是 "chrome"
driver.get("https://www.google.com")
```
如果你的代码中已经正确地将浏览器类型设置为 "Chrome",那么可能是因为你的selenium webdriver版本过低,建议升级到最新版本。
AttributeError: module 'selenium.webdriver.chrome.webdriver' has no attribute 'Chrome'
这个错误通常出现在使用Selenium时,Selenium无法找到Chrome浏览器驱动程序或者Chrome浏览器驱动程序版本不兼容。可以尝试以下方法解决该问题:
1. 确保已经正确安装了Chrome浏览器和对应版本的Chrome驱动程序。
2. 确保Chrome浏览器和Chrome驱动程序的版本匹配。
3. 检查Chrome驱动程序的路径是否正确设置。
4. 尝试使用其他浏览器驱动程序,如Firefox或Edge。
如果以上方法都不行,可以尝试重新安装Selenium和Chrome浏览器,并确保所有依赖包都已正确安装。
阅读全文