问题 :执行程序代码报错:
WebDriverException:Message:‘geckodriver‘executable needs to be in Path
或者
selenium.common.exceptions.WebDriverException: Message: ‘geckodriver‘ executable needs to be in PATH.
解决,geckodriver是一原生态的第三方浏览器,对于selenium3.x版本都会使用geckodriver来驱动firefox,所以需要下载geckodriver.exe。放置在Path 环境变量可以访问到的地方。例如 C:\python34目录下
Geckodirver的下载地址:https://github.com/mozilla/geckodriver/releases
或者
将火狐的安装路径放到path
原文地址:https://www.cnblogs.com/JahanGu/p/8337886.html
时间: 2024-10-07 17:37:09