当前位置: 代码迷 >> 综合 >> selenium启动浏览器报错os.path.basename(self.path), self.start_error_message) selenium.common.exceptions.Web
  详细解决方案

selenium启动浏览器报错os.path.basename(self.path), self.start_error_message) selenium.common.exceptions.Web

热度:77   发布时间:2023-12-18 03:01:34.0

用selenium启动Firefox浏览器报错,原因是没有安装驱动。
解决办法:

  1. 下载geckodriver.exe:https://github.com/mozilla/geckodriver/releases(选择相应的版本)
  2. 下载解压后将getckodriver.exe复制到Firefox的安装目录下,如D:\Firefox,并在系统变量中添加路径D:\Firefox
  3. 重启cmd,pycharm或者IDLE再次运行代码即可
  相关解决方案