I cannot figure out how I can change path for logfile for PhantomJS. I try with:
DesiredCapabilities caps = new DesiredCapabilities();
caps.setJavascriptEnabled(true);
caps.setCapability("takesScreenshot", false);
caps.setCapability(
PhantomJSDriverService.PHANTOMJS_GHOSTDRIVER_CLI_ARGS,
new String[] { "--logfile=/home/ant/Document/phantomjsdriver.log" });
caps.setCapability(
PhantomJSDriverService.PHANTOMJS_EXECUTABLE_PATH_PROPERTY,
path);
And also with:
ArrayList<String> cliArgsCap = new ArrayList<String>();
cliArgsCap.add("--logfile=/home/ant/Document/phantomjsdriver.log");
DesiredCapabilities caps = new DesiredCapabilities();
caps.setJavascriptEnabled(true);
caps.setCapability("takesScreenshot", false);
caps.setCapability(PhantomJSDriverService.PHANTOMJS_CLI_ARGS,cliArgsCap);
But for now it doesn't work.
I have been looking for same for some time.
According to this issue on GitHub, it is difficult, effectively not possible. There is a workaround mentioned, but you need to provide some of the Ghostdriver source: the
main.js
and all files it imports.According to this pull on GitHub, there is a command line argument
--webdriver-logfile
, and you can see this in the actual log. However, looking through the PhatomJSDriver source, accessing the CLI arguments has the same problem: you need the Ghostdriver source.There is a comment on the PhantomJS main page from the maintainer, that he unfortunately no longer has time to work on this.