尝试使用 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 自动定位和检索 webdriver 二进制文件,无需手动指定驱动程序位置。此功能简化了 Selenium 设置过程,特别是对于 v4.6.0 及更高版本。
以上是为什么 Selenium 会抛出'NoSuchDriverException”以及如何修复它?的详细内容。更多信息请关注PHP中文网其他相关文章!