错误信息 NoSuchDriverException: Unable to locate or obtain driver for chrome
指出Selenium无法定位Chrome驱动程序。根据您提供的错误信息和检索到的资源,这里是一些可能的解决方案:
1. 确保Selenium版本是最新的
Selenium 4.6及以上版本会自动下载所需的驱动程序。如果您使用的是最新版本的Selenium,但仍然遇到错误,请开启日志记录并提交bug报告。
2. 使用环境变量 PATH
您可以手动下载驱动程序,然后将其放置在系统环境变量 PATH
中已列出的目录,或者将包含驱动程序的目录添加到 PATH
中。
- 在Windows上,打开命令提示符并执行:
echo %PATH%
- 在Linux或macOS上,打开终端并执行:
echo $PATH
如果驱动程序的位置不在列出的目录中,可以将其添加到 PATH
。添加后,可以通过检查驱动程序的版本来测试是否正确添加:
chromedriver --version
3. 指定驱动程序的位置
如果不想升级到最新版本的Selenium,不希望Selenium为您下载驱动程序,或者无法配置环境变量,可以在代码中指定驱动程序的位置。
首先下载所需的驱动程序,然后创建适用的 Service
类的实例并设置路径:
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.chrome.options import Options
chromedriver_path = '/path/to/chromedriver'
service = Service(executable_path=chromedriver_path)
chrome_options = Options()
driver = webdriver.Chrome(service=service, options=chrome_options)
4. 使用第三方驱动管理库
如果您使用的Selenium版本较旧(建议升级),或者需要Selenium Manager尚未实现的高级功能,可以尝试使用第三方工具来自动更新驱动程序,例如:
- WebDriverManager (Java)
- WebDriver Manager (Python)
- WebDriver Manager Package (.NET)
- webdrivers gem (Ruby)
5. 检查驱动程序下载链接
确保从官方链接下载了正确版本的驱动程序:
- Chromedriver: https://chromedriver.chromium.org/downloads
- Geckodriver (Firefox): https://github.com/mozilla/geckodriver/releases
6. 使用 Selenium Manager
如果您正在使用Selenium 4.6或更新版本,可以利用Selenium Manager自动管理驱动程序。使用以下代码自动下载并设置Chromedriver:
from selenium import webdriver
from selenium.webdriver.chrome.service import ChromeService
from selenium.webdriver.chrome.options import Options
from selenium_manager import ChromeDriverManager
service = ChromeService(executable_path=ChromeDriverManager().install())
chrome_options = Options()
driver = webdriver.Chrome(service=service, options=chrome_options)
Traceback (most recent call last):
File "D:/st_dev/ugot1213/test/04selenium.py", line 12, in <module>
driver = webdriver.Chrome(service=service)
File "C:\Program Files\Python37\lib\site-packages\selenium\webdriver\chrome\webdriver.py", line 50, in __init__
keep_alive,
File "C:\Program Files\Python37\lib\site-packages\selenium\webdriver\chromium\webdriver.py", line 51, in __init__
self.service.path = DriverFinder.get_path(self.service, options)
File "C:\Program Files\Python37\lib\site-packages\selenium\webdriver\common\driver_finder.py", line 44, in get_path
raise NoSuchDriverException(f"Unable to locate or obtain driver for {options.capabilities['browserName']}")
selenium.common.exceptions.NoSuchDriverException: Message: Unable to locate or obtain driver for chrome; For documentation on this error, please visit: https://www.selenium.dev/documentation/webdriver/troubleshooting/errors/driver_location
Process finished with exit code 1