TypeError: WebDriver.__init__() got an unexpected keyword argument 'executable_path'
时间: 2023-08-01 10:10:35 浏览: 551
这个错误通常发生在使用Selenium时,WebDriver初始化时传递了一个未知的关键字参数'executable_path'。这个错误可能是由于你使用了不正确的参数名或是版本不兼容导致的。
在Selenium中,WebDriver的初始化参数应该是'executable_path'而不是'path'。你需要将参数名更正为'path',并指定正确的驱动程序路径。
例如,如果你正在使用Chrome浏览器,你可以下载对应版本的ChromeDriver,并将其路径传递给'path'参数:
```python
from selenium import webdriver
driver = webdriver.Chrome(path='/path/to/chromedriver')
```
请确保你已经正确安装了所需的浏览器驱动程序,并将驱动程序的路径传递给适当的参数。这样就可以解决这个错误了。
相关问题
依旧报错TypeError: WebDriver.__init__() got an unexpected keyword argument 'executable_path'
这个错误通常是由于使用了错误的参数或版本不匹配导致的。在Python中,使用Selenium库进行Web自动化时,创建WebDriver对象时会传入一个参数executable_path,用于指定浏览器驱动的路径。然而,如果你使用的是错误的参数名或者版本不匹配,就会出现这个错误。
解决这个问题的方法是:
1. 确保你已经正确安装了浏览器驱动,并将其路径正确地传递给executable_path参数。
2. 检查你使用的Selenium库的版本是否与浏览器驱动的版本匹配。如果版本不匹配,可能会导致兼容性问题。
3. 如果你使用的是Chrome浏览器,可以尝试更新Chrome浏览器和对应的Chrome驱动到最新版本,以确保兼容性。
上述代码报错:TypeError: WebDriver.__init__() got an unexpected keyword argument 'executable_path'
这个错误通常是因为使用了错误的参数或者版本不兼容导致的。在Python中,使用Selenium时,我们需要指定浏览器驱动的路径,这个路径可以通过executable_path参数来指定。但是,如果你的Selenium版本过低,可能会导致这个参数不被支持,从而出现上述错误。
解决方法:
1. 检查你的Selenium版本是否过低,如果是,请升级到最新版本。
2. 检查你的浏览器驱动是否正确安装,并且路径是否正确。
3. 如果你使用的是Chrome浏览器,可以尝试使用ChromeOptions来指定浏览器驱动路径,例如:
```
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
chrome_options = Options()
chrome_options.add_argument("--disable-extensions")
chrome_options.add_argument("--disable-gpu")
chrome_options.add_argument("--no-sandbox") # linux only
chrome_options.add_argument("--headless")
driver = webdriver.Chrome(chrome_options=chrome_options, executable_path='/path/to/chromedriver')
```
阅读全文