我成功地使用指挥框架从网站上删除数据.我使用Chrome浏览器,因此我已经在我的项目的根目录中安装了chromedriver.exe.
为了加快速度,我想用无头PhantomJS浏览器替代Chrome.我安装了PhantomJS,如解答这个Stackoverflow问题:PhantomJS & Conductor Framework,并将浏览器更改为@Config中的Browser.PHANTOMJS.
不管我做什么,我都没有结果.
我发现没有文档如何设置PhantomJS用于Selenium或PhantomJS.
How to Implement Selenium WebDriver with PhantomJS and Can we Use Sikuli with PhantomJS?这个问题也没有帮助.
如何用PhantomJS替代铬,以便与硒和导体一起使用?
解决方法
您所遇到的麻烦似乎是由于Conductor中包含的旧版PhantomJS库.运行PhantomJS的错误可以在Selenium Github的
this imported issue中找到.补救措施是导入与新版硒鼓兼容的PhantomJS
fork.
您可以通过编辑pom.xml文件和交换来轻松实现
<groupId>com.github.detro</groupId> <artifactId>phantomjsdriver</artifactId> <version>${phantomjs_version}</version>
同
<groupId>com.codeborne</groupId> <artifactId>phantomjsdriver</artifactId> <version>1.2.1</version>