0

如何避免HtmlUnitDriver创建日志?使用默认配置会创建很多不必要的日志。例如:

SEVERE: HtmlSpan[<span class="elementClass">] -> HtmlHtml[<html>]

我已经尝试过来自该站点http://orjantaule.blogspot.com/2011/11/silencing-logging-output-from.html的建议(添加一个 commons-logging.properties 文件和一个 simplelog.properties 文件)但是那没起效。

4

1 回答 1

0

刚刚找到了一个解决方案 groups.google.com/forum/#!topic/selenium-users/s29dz03bEyU :

“点击人”:

“在 Selenium 团队之前,使用这个临时修复。

System.setErr(new PrintStream(new OutputStream() {
    public void write(int b) {
    }
}));"
于 2013-09-20T23:51:59.927 回答