如何避免创建日志HtmlUnitDriver
?使用默认配置时,会创建许多不必要的日志。例如:
SEVERE: HtmlSpan[<span class="elementClass">] -> HtmlHtml[<html>]
我已经尝试了这个站点的建议 http://orjantaule.blogspot.com/2011/11/silencing-logging-output-from.html(添加一个commons-logging.properties文件和一个simplelog.properties文件),但它不起作用。
刚刚找到一个解决方案 groups.google.com/forum/#!topic/selenium-users/s29dz03bEyU:
"咔嚓咔嚓":
"在Selenium团队之前,请使用这个临时修复程序。
System.setErr(new PrintStream(new OutputStream() {
public void write(int b) {
}
}));"