Chrome Driver不在可执行的路径中,如何在Selenium中修复此错误。

发布于 2025-01-24 14:35:00 字数 1360 浏览 0 评论 0 原文

我对导致此错误的原因感到困惑:

Chrome版本为100.0.4986,它是最新的

“在此处输入映像说明”

python版本是3.9.1:

在此处输入图像描述“

Chrome Web驱动程序版本为100.0:

“在此处输入映像”

Web驱动程序的路径和位置:

代码以下基于:

from selenium import webdriver

driver = webdriver.Chrome(executable_path=r'C:\Users\sanas\OneDrive\CSIT 110 Python\chromedriver.exe')

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

错误:

“

I'm confused as to what is causing this error:

The chrome version is 100.0.4986 which is the latest

enter image description here

Python version is 3.9.1:

enter image description here

Chrome web driver version is 100.0:

enter image description here

Path and location of web driver:

enter image description here

Code below based :

from selenium import webdriver

driver = webdriver.Chrome(executable_path=r'C:\Users\sanas\OneDrive\CSIT 110 Python\chromedriver.exe')

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

Error:

https://i.sstatic.net/dnceF.png

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

榕城若虚 2025-01-31 14:35:00

将您的chromedriver.exe放入C:\文件夹中,然后尝试此代码。注释的行不需要打开新浏览器,它将用于查找页面上的元素。

from selenium import webdriver
# from selenium.webdriver.common.by import By 
from selenium.webdriver.chrome.service import Service
ser = Service('C:\\chromedriver.exe')
opt = webdriver.ChromeOptions()

web = webdriver.Chrome(service=ser, options=opt)
web.get('url link you want to open')

Put your chromedriver.exe in C:\ folder and try this code. The commented line is not necessary for opening new browser it will be used for finding elements on the page.

from selenium import webdriver
# from selenium.webdriver.common.by import By 
from selenium.webdriver.chrome.service import Service
ser = Service('C:\\chromedriver.exe')
opt = webdriver.ChromeOptions()

web = webdriver.Chrome(service=ser, options=opt)
web.get('url link you want to open')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文