2016-07-26 5 views
0

私は以下のようにファントムjsをロードしようとしています。私はLinuxマシンでこれを実行Javaを使用してLinuxマシンで実行するPhantomjsドライバを設定するには?

File file = new File("src/test/resources/phantomjs-linux");    
System.setProperty("phantomjs.binary.path", file.getAbsolutePath());  

例外の下に取得します:

java.lang.IllegalStateException: The driver is not executable: /home/tomcat-jenkins/workspace/pitchIT/pitchIT-services/src/test/resources/phantomjs-linux 
    at com.google.common.base.Preconditions.checkState(Preconditions.java:199) 
    at org.openqa.selenium.remote.service.DriverService.checkExecutable(DriverService.java:121) 
    at org.openqa.selenium.phantomjs.PhantomJSDriverService.findPhantomJS(PhantomJSDriverService.java:246) 
    at org.openqa.selenium.phantomjs.PhantomJSDriverService.createDefaultService(PhantomJSDriverService.java:182) 
    at org.openqa.selenium.phantomjs.PhantomJSDriver.<init>(PhantomJSDriver.java:99) 
    at org.openqa.selenium.phantomjs.PhantomJSDriver.<init>(PhantomJSDriver.java:89) 
    at com.astrazeneca.als.pitchIT.util.BDDUtilities.doInit(BDDUtilities.java:69) 
    at com.astrazeneca.als.pitchIT.util.BDDUtilities.getDriver(BDDUtilities.java:33) 
    at com.astrazeneca.als.pitchIT.controller.PitchITHomepageSteps.an_browser_win 

答えて

0

いますが、絶対パスでそれを持っているしたい場合は

ファイルphantomJSBinary =新しいファイル(「パス」+ファイル.separator + "〜" + File.separator + "phantomjs"); DesiredCapabilities caps = new DesiredCapabilities(); caps.setCapability(PhantomJSDriverService.PHANTOMJS_EXECUTABLE_PATH_PROPERTY、phantomJSBinary.getAbsolutePath());

関連する問題