Traceback (most recent call last): File "D:\pythonsthl\flaskProject\SeleniumTest\21Test.py", line 10, in <module> driver = webdriver.Chrome(executable_path=driver_path) TypeError: __init__() got an unexpected keyword argument 'executable_path'
时间: 2023-12-07 15:02:20 浏览: 248
Python3+selenium配置常见报错解决方案
5星 · 资源好评率100%
这个错误是由于`webdriver.Chrome()`的初始化函数中不支持`executable_path`参数导致的。根据错误信息,你尝试使用`executable_path`参数来指定Chrome驱动程序的路径。
这个问题可能是由于使用的Selenium库的版本问题导致的。在旧版本的Selenium中,确实有一个`executable_path`参数来指定驱动程序的路径。但是,在较新的版本中,这个参数已经被移除,而是使用`executable_path`来初始化`ChromeOptions`对象。
要解决这个问题,你可以尝试使用以下代码来指定Chrome驱动程序的路径:
```python
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.chrome.options import Options
# 定义driver_path变量,指向Chrome驱动程序的路径
driver_path = "path/to/chromedriver"
# 创建ChromeOptions对象并设置executable_path
options = Options()
options.binary_location = driver_path
# 创建Service对象并设置Chrome驱动程序路径
service = Service(driver_path)
# 使用Service和Options创建WebDriver对象
driver = webdriver.Chrome(service=service, options=options)
# 接下来可以使用driver进行其他操作
```
请确保在使用新版本的Selenium时,按照上述示例代码正确设置Chrome驱动程序的路径。这样应该可以解决这个问题。如果仍然遇到问题,请确保你已正确安装和配置了最新版本的Selenium和Chrome驱动程序。
阅读全文