关于selenium库浏览器webdriver不能被找到的问题

关于selenium库浏览器webdriver不能被找到的问题

码农世界 2024-06-13 后端 97 次浏览 0个评论

报错提示:

selenium.common.exceptions.NoSuchDriverException: Message: Unable to obtain driver for firefox using Selenium Manager.; For documentation on this error, please visit: https://www.selenium.dev/documentation/webdriver/troubleshooting/errors/driver_location

意思就是找不到驱动火狐浏览器的webdriver,网络上回答的方法一般是:

1.更新selenium

2.如果是webdriver和浏览器有版本对应(如:谷歌)则需要下载对应的浏览器版本,但是火狐浏览器不在此列

3.指定webdriver路径(这就是本文提供的解决方案,来源于python - selenium.common.exceptions.NoSuchDriverException: 消息:无法使用Selenium Manager获取chromedriver,使用Selenium和ChromeDriver时出错 - 堆栈溢出 (stackoverflow.com))

本文提供的解决方案:

使用selenium的service,指定webdriver的路径,案例如下

from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.chrome.service import Service
#webdriver的路径
gecko_driver_path = 'C:\All\software\Anaconda\geckodriver.exe'
#固定搭配直接用就行了
service = Service(executable_path=gecko_driver_path)
driver = webdriver.Firefox(service=service)
# 打开网页
driver.get("https://www.baidu.com")

bingo,成功解决了!

转载请注明来自码农世界,本文标题:《关于selenium库浏览器webdriver不能被找到的问题》

百度分享代码,如果开启HTTPS请参考李洋个人博客
每一天,每一秒,你所做的决定都会改变你的人生!

发表评论

快捷回复:

评论列表 (暂无评论,97人围观)参与讨论

还没有评论,来说两句吧...

Top