AttributeError: module 'selenium.webdriver.chrome' has no attribute 'get'
时间: 2023-10-02 21:11:38 浏览: 162
这个错误通常是由于使用了错误的方法名或模块导入问题引起的。根据你提供的错误信息,可能是在使用selenium库时出现了问题。正常情况下,Selenium中的`get()`方法不属于`webdriver.chrome`模块,而是属于`webdriver`模块。
请确保你正确导入了Selenium和ChromeDriver,并使用正确的方法名来执行浏览器操作。以下是一个示例代码,展示了如何导入Selenium并使用`get()`方法打开浏览器:
```python
from selenium import webdriver
# 设置 ChromeDriver 的路径
chromedriver_path = 'path/to/chromedriver'
# 初始化 ChromeDriver
driver = webdriver.Chrome(executable_path=chromedriver_path)
# 使用 get() 方法打开网页
driver.get('https://www.example.com')
```
请确保你已经正确安装了Selenium和ChromeDriver,并将`chromedriver_path`设置为你系统中ChromeDriver的实际路径。
相关问题
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 webdriver时,将浏览器类型设为了"chrome"而不是"Chrome"。请确保你的代码中浏览器类型的名称与实际的浏览器类型名称相匹配,例如:
```
from selenium import webdriver
driver = webdriver.Chrome() # 注意这里的浏览器类型是 "Chrome" 而不是 "chrome"
driver.get("https://www.google.com")
```
如果你的代码中已经正确地将浏览器类型设置为 "Chrome",那么可能是因为你的selenium webdriver版本过低,建议升级到最新版本。
阅读全文