Chrome Driver不在可执行的路径中,如何在Selenium中修复此错误。
我对导致此错误的原因感到困惑:
Chrome版本为100.0.4986,它是最新的
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")
错误:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将您的chromedriver.exe放入C:\文件夹中,然后尝试此代码。注释的行不需要打开新浏览器,它将用于查找页面上的元素。
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.