1
當運行普通的PhantomJS時,可以設置一個config.json來設置一些選項。如何在使用Selenium WebDriver時使用JSON文件設置PhantomJS?使用Java中的WebDriver從JSON設置PhantomJS
我有這樣的:
DesiredCapabilities caps = new DesiredCapabilities();
caps.setJavascriptEnabled(true);
caps.setCapability("takesScreenshot", false);
caps.setCapability(
PhantomJSDriverService.PHANTOMJS_EXECUTABLE_PATH_PROPERTY,
"/usr/local/bin/phantomjs");
driver = new PhantomJSDriver(caps);
我在這裏看到:http://phantomjs.org/api/command-line.html,我可以配置phantomjs驅動程序與json ..但我不明白我怎麼可以在java – 2015-03-13 16:27:26