selenium3+firefox 报错
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium3+firefox 报错相关的知识,希望对你有一定的参考价值。
The path to the driver executable must be set by the webdriver.gecko.driver system property
报这个错,是因为你使用了selenium3+Firefox。在selenium3中,使用Firefox,需要添加驱动。
https://github.com/mozilla/geckodriver/releases/tag/v0.9.0 从此网站下载响应的驱动,解压到firefox安装目录
在代码中加入
System.setProperty("webdriver.firefox.marionette","C:\\\\Program Files (x86)\\\\Mozilla Firefox\\\\geckodriver.exe");
WebDriver driver=new FirefoxDriver();
C:\\\\Program Files (x86)\\\\Mozilla Firefox\\\\geckodriver.exe是驱动放置的位置
以上是关于selenium3+firefox 报错的主要内容,如果未能解决你的问题,请参考以下文章
python+selenium3+firefox中使用ActionChains双击等鼠标事件操作报错,但是其它谷歌ie等浏览器均正常
python+selenium3+firefox中使用ActionChains双击等鼠标事件操作报错,但是其它谷歌、ie等浏览器均正常。
selenium3+python自动化50-环境搭建(firefox)