使用 phantomjs 和 selenium 进行无头测试的不必要日志

Unecessary logs in headless testing using phantom js and selenium

在使用 phantom js 执行无头测试时,我收到了很多不必要的红色日志。

如何删除所有那些红色日志

public class Utility 
{
   private static WebDriver driver=new PhantomJSDriver();
   public static WebDriver getDriver() 
   {
      return driver;
   }
}    

您需要执行以下操作来禁止显示 INFO 日志:

File src = new File("C:\Utility\phantomjs-2.1.1-windows\bin\phantomjs.exe");
System.setProperty("phantomjs.binary.path", src.getAbsolutePath());

DesiredCapabilities dcap = new DesiredCapabilities();
String[] phantomArgs = new  String[] {
    "--webdriver-loglevel=NONE"
};
dcap.setCapability(PhantomJSDriverService.PHANTOMJS_CLI_ARGS, phantomArgs);
PhantomJSDriver driver = new PhantomJSDriver(dcap);

driver.get("https://www.facebook.com/");

让我知道它是否适合你。