无法使用 Selenium Webdriver。出现两个异常

2024-12-05 08:37:00
admin
原创
101
摘要:问题描述:当我尝试使用 Selenium Webdriver 创建对象时出现以下错误。"seleniumwebdrivercommondriver_finder.py", line 42, in get_path path = SeleniumManager().driver_lo...

问题描述:

当我尝试使用 Selenium Webdriver 创建对象时出现以下错误。

"seleniumwebdrivercommondriver_finder.py", line 42, in get_path
    path = SeleniumManager().driver_location(options) if path is None else path

"seleniumwebdrivercommonselenium_manager.py", line 74, in driver_location
    browser = options.capabilities["browserName"]

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

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
"selenium_webdriver_webscraping.py", line 4, in <module>
    driver = webdriver.Chrome(chrome_driver_path)
"seleniumwebdriverchromewebdriver.py", line 47, in __init__
    self.service.path = DriverFinder.get_path(self.service, self.options)
"seleniumwebdrivercommondriver_finder.py", line 44, in get_path
    raise NoSuchDriverException(f"Unable to obtain {service.path} using Selenium Manager; {err}")
selenium.common.exceptions.NoSuchDriverException: Message: Unable to obtain chromedriver using Selenium Manager; 'str' object has no attribute 'capabilities'; For documentation on this error, please visit: https://www.selenium.dev/documentation/webdriver/troubleshooting/errors/driver_location

这是我使用的代码:

from selenium import webdriver

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

解决方案 1:

如果您使用的 Selenium 版本是 v4.6.0 或更高版本(我认为是,因为我SeleniumManger在错误跟踪中看到过),那么您实际上不必设置driver.exe路径。Selenium 可以自行处理浏览器和驱动程序。

因此您的代码可以简化如下:

from selenium import webdriver

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

一些参考:

  • Webdriver 管理器的用途

  • Selenium Manager 简介

解决方案 2:

这是由于 Selenium 4.10.0 中的变化:
https ://github.com/SeleniumHQ/selenium/commit/9f5801c82fb3be3d5850707c46c3f8176e3ccd8e

Selenium_4_10_0 中的变化

请注意,第一个参数不再是executable_path,并且desired_capabilities已被删除,但现在有另一种方式来传入它。有关如何在使用 Selenium 4.10.0(或更新版本)时传入所需功能的文档,请参阅升级到 Selenium 4 。

此外,如果您想设置executable_path,可以通过传入service,但这不再是必要的,因为包含了 selenium 管理器。

以下是包含您需要的一切的代码片段:

from selenium import webdriver
from selenium.webdriver.chrome.service import Service

service = Service()
options = webdriver.ChromeOptions()
driver = webdriver.Chrome(service=service, options=options)
# ...
driver.quit()

解决方案 3:

我得到了以下同样的错误:

AttributeError:'str' 对象没有属性 'capabilities'

chromedriver.exe因为我将的路径设置webdriver.Chrome()为如下图:

from selenium import webdriver

driver = webdriver.Chrome('./chromedriver.exe')

因此,我删除了如下所示的路径webdriver.Chrome(),然后错误就解决了。 *这是推荐的,您可以看到我关于哪个版本的 chrome 驱动程序的答案webdriver.Chrome()

from selenium import webdriver

driver = webdriver.Chrome()

或者,我将路径设置为Service(),并将其设置webdriver.Chrome()为如下所示,然后错误就解决了:

from selenium.webdriver.chrome.service import Service
from selenium import webdriver

service = Service(executable_path='./chromedriver.exe')
driver = webdriver.Chrome(service=service)

而且,由于我没有下载并设置 chromedriver.exe,因此出现了以下相同的错误django-project

selenium.common.exceptions.NoSuchDriverException:消息:无法找到或获取 chrome 驱动程序;有关此错误的文档,请访问: https: //www.selenium.dev/documentation/webdriver/troubleshooting/errors/driver_location

这是我的代码:

# "tests/test_1.py"

from django.test import LiveServerTestCase
from selenium.webdriver.chrome.service import Service
from selenium import webdriver

class TestBrowser1(LiveServerTestCase):
    def test_example(self):
        service = Service(executable_path='./chromedriver')
        driver = webdriver.Chrome(service=service)
        driver.get(("%s%s" % (self.live_server_url, "/admin/")))
        assert "Log in | Django site admin" in driver.title

因此,我下载chromedriver.exe并将其设置到如下所示的根目录django-project,然后错误就解决了:

django-project
 |-core
 |  |-settings.py
 |  └-urls.py
 |-my_app1
 |-my_app2
 |-tests
 |  |-__init__.py
 |  └-test_1.py
 └-chromedriver.exe # Here

解决方案 4:

您使用的 Selenium 版本是 v4.6 或更高版本。我在笔记本电脑上运行了正确的代码,但当我在另一台笔记本电脑上运行相同的代码时,出现了错误。我意识到它安装了 selenium v​​4.16 。我安装了 3.141.0 版本的 selenium,它运行正常。

pip install selenium==3.141.0

Installing collected packages: selenium
  Attempting uninstall: selenium
    Found existing installation: selenium 4.16.0
    Uninstalling selenium-4.16.0:
      Successfully uninstalled selenium-4.16.0
Successfully installed selenium-3.141.0

解决方案 5:

我用过time.sleep

完整代码片段:

from selenium import webdriver
import time

website = "website"
path = r'path'
driver = webdriver.Chrome( )
driver.get(website)
time.sleep(100)
driver.quit()

这对我来说很有效,你可以根据需要添加任意时间

解决方案 6:

如果您使用的是最新版本的 Selenium 4.25 和 Python 3.12。请阅读您要使用的库的文档。

import time
from selenium import webdriver

driver = webdriver.Chrome()

driver.get("https://www.google.com/")
time.sleep(15)

driver.close()
driver.quit()

解决方案 7:

如果你使用 anaconda/conda,你可以直接从 conda 安装

conda install selenium

这对我来说是工作

相关推荐
  为什么项目管理通常仍然耗时且低效?您是否还在反复更新电子表格、淹没在便利贴中并参加每周更新会议?这确实是耗费时间和精力。借助软件工具的帮助,您可以一目了然地全面了解您的项目。如今,国内外有足够多优秀的项目管理软件可以帮助您掌控每个项目。什么是项目管理软件?项目管理软件是广泛行业用于项目规划、资源分配和调度的软件。它使项...
项目管理软件   984  
  在项目管理领域,CDCP(Certified Data Center Professional)认证评审是一个至关重要的环节,它不仅验证了项目团队的专业能力,还直接关系到项目的成功与否。在这一评审过程中,沟通技巧的运用至关重要。有效的沟通不仅能够确保信息的准确传递,还能增强团队协作,提升评审效率。本文将深入探讨CDCP...
华为IPD流程   0  
  IPD(Integrated Product Development,集成产品开发)是一种以客户需求为核心、跨部门协同的产品开发模式,旨在通过高效的资源整合和流程优化,提升产品开发的成功率和市场竞争力。在IPD培训课程中,掌握关键成功因素是确保团队能够有效实施这一模式的核心。以下将从五个关键成功因素展开讨论,帮助企业和...
IPD项目流程图   0  
  华为IPD(Integrated Product Development,集成产品开发)流程是华为公司在其全球化进程中逐步构建和完善的一套高效产品开发管理体系。这一流程不仅帮助华为在技术创新和产品交付上实现了质的飞跃,还为其在全球市场中赢得了显著的竞争优势。IPD的核心在于通过跨部门协作、阶段性评审和市场需求驱动,确保...
华为IPD   0  
  华为作为全球领先的通信技术解决方案提供商,其成功的背后离不开一套成熟的管理体系——集成产品开发(IPD)。IPD不仅是一种产品开发流程,更是一种系统化的管理思想,它通过跨职能团队的协作、阶段评审机制和市场需求驱动的开发模式,帮助华为在全球市场中脱颖而出。从最初的国内市场到如今的全球化布局,华为的IPD体系在多个领域展现...
IPD管理流程   0  
热门文章
项目管理软件有哪些?
云禅道AD
禅道项目管理软件

云端的项目管理软件

尊享禅道项目软件收费版功能

无需维护,随时随地协同办公

内置subversion和git源码管理

每天备份,随时转为私有部署

免费试用