首页 >后端开发 >Python教程 >为什么 Selenium 会抛出'NoSuchDriverException”以及如何修复它?

为什么 Selenium 会抛出'NoSuchDriverException”以及如何修复它?

Susan Sarandon
Susan Sarandon原创
2024-12-10 17:55:15164浏览

Why Does Selenium Throw a `NoSuchDriverException` and How Can I Fix It?

无法使用 Selenium Webdriver:两个异常

尝试使用 Selenium Webdriver 创建对象时,出现以下错误:

AttributeError: 'str' object has no attribute 'capabilities'

During handling of the above exception, another exception occurred:

selenium.common.exceptions.NoSuchDriverException: Message: Unable to obtain chromedriver using Selenium Manager; 'str' object has no attribute 'capabilities'

检查代码

有问题的代码显示为如下所示:

from selenium import webdriver

chrome_driver_path = <chrome drive .exe path>
driver = webdriver.Chrome(chrome_driver_path)

简化解决方案

对于 Selenium 版本 v4.6.0 及更高版本,显式指定驱动程序位置已过时。 Selenium 可以独立管理浏览器和驱动程序。因此,代码可以简化为:

from selenium import webdriver

driver = webdriver.Chrome()
driver.get("https://www.google.com/")
driver.quit()

了解 Selenium Manager

Selenium Manager 自动定位和检索 webdriver 二进制文件,无需手动指定驱动程序位置。此功能简化了 Selenium 设置过程,特别是对于 v4.6.0 及更高版本。

以上是为什么 Selenium 会抛出'NoSuchDriverException”以及如何修复它?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn