AttributeError: module 'selenium.webdriver.chrome.webdriver' has no attribute 'chrome'
时间: 2023-10-22 10:07:22 浏览: 143
这个错误通常是因为你在使用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时,使用了错误的方法或参数。具体来说,是在调用chrome浏览器时,使用了错误的参数。
要解决这个问题,需要检查代码中使用的参数是否正确,并确保使用的是正确的方法来调用chrome浏览器。如果仍然无法解决问题,可以尝试升级selenium或chrome浏览器版本,或者查看是否存在其他错误。
AttributeError: module 'selenium.webdriver.chrome.webdriver' has no attribute 'Chrome'
这个错误提示是因为在使用selenium时,使用了错误的方法或参数。具体来说,是在调用chrome浏览器时,使用了错误的参数。
要解决这个问题,需要检查代码中使用的参数是否正确,并确保使用的是正确的方法来调用chrome浏览器。如果仍然无法解决问题,可以尝试升级selenium或chrome浏览器版本,或者查看是否存在其他错误。
阅读全文