NoSuchDriverException

简介: 【8月更文挑战第10天】

错误信息 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. 检查驱动程序下载链接

确保从官方链接下载了正确版本的驱动程序:

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
目录
相关文章
|
6月前
|
Web App开发 Linux
只需五步,在Linux安装chrome及chromedriver(CentOS)
只需五步,在Linux安装chrome及chromedriver(CentOS)
2251 1
|
6月前
|
Linux
如何在 Linux 中将用户添加到多个组?
【4月更文挑战第17天】
949 6
|
API Python
Python-Docx库 | Word与Python的完美结合(附使用文档)
Python-Docx库 | Word与Python的完美结合(附使用文档)
2936 0
|
2月前
|
自然语言处理 IDE 测试技术
|
2月前
|
存储 安全 芯片
U盘在电脑上读不出来怎么办?6个方法帮你修复U盘
平时在存储和传输数据的时候,我们经常会使用到U盘这种存储设备。U盘容量大,使用方便且便于携带,很受欢迎。 然而,在日常使用中,有时候会遇到U盘插入电脑后无法被电脑识别或读取的情况。这会让人感到困扰,因为我们无法访问U盘里的文件。遇到这种情况该怎么办呢?今天的内容会讨论一下U盘无法读取的症状、分析一下常见原因并且提供6个方法帮你修复U盘。
|
3月前
|
Linux Python
Linux离线安装Python第三方库Requests
本文介绍了在无法连接外网的Linux服务器上离线安装Python第三方库Requests的过程,包括下载依赖包、解决依赖问题并成功安装的步骤。
405 0
|
4月前
|
Web App开发 测试技术 Python
【Python】已解决:selenium.common.exceptions.WebDriverException: Message: unknown error: cannot find Chrom
【Python】已解决:selenium.common.exceptions.WebDriverException: Message: unknown error: cannot find Chrom
492 6
|
6月前
|
Docker 容器
docker环境时区与宿主机不一致的解决办法
docker环境时区与宿主机不一致的解决办法
361 0
|
6月前
|
API Python
python+selenium设置下载路径21 / 100
python+selenium设置下载路径21 / 100
96 0
|
6月前
|
IDE 开发工具 git
Git版本控制及Goland使用Git教程(二)
Git版本控制及Goland使用Git教程(二)
354 0