selenium phantomjs

来源:互联网 发布:rar64解压软件下载 编辑:程序博客网 时间:2024/05/20 11:25
public static WebDriver createWebDriver() {capability = DesiredCapabilities.phantomjs();capability.setJavascriptEnabled(false);FirefoxProfile profile = new FirefoxProfile();// 去掉cssprofile.setPreference("permissions.default.stylesheet", 2);// 去掉图片profile.setPreference("permissions.default.image", 2);// 去掉flashprofile.setPreference("dom.ipc.plugins.enabled.libflashplayer.so",false);System.setProperty("phantomjs.binary.path","E:\\test\\phantomjs-1.9.7-windows\\phantomjs.exe");// WebDriver ff = new HtmlUnitDriver(cc);WebDriver ff = new PhantomJSDriver(capability);// WebDriver ff= new Phreturn ff;}

   <dependency>
    <groupId>com.github.detro.ghostdriver</groupId>
    <artifactId>phantomjsdriver</artifactId>
    <version>1.1.0</version>
</dependency>

0 0
原创粉丝点击