I'm developing a small console app using Selenium and I need to turn off all logs from it.
I have tried phantomJSDriver.setLogLevel(Level.OFF);
but it does not work.
I need help.
How do I disable all logs in console application that is using Selenium and Phantomjs (GhostDriver)?
This one works for me.
DesiredCapabilities dcap = new DesiredCapabilities();
String[] phantomArgs = new String[] {
"--webdriver-loglevel=NONE"
};
dcap.setCapability(PhantomJSDriverService.PHANTOMJS_CLI_ARGS, phantomArgs);
PhantomJSDriver phantomDriver = new PhantomJSDriver(dcap);