我们的团队正在使用docker部署selenium网格。默认日志级别似乎设置为INFO。我想将它设置为更高,严重或完全关闭它们。我做了三次尝试,但到目前为止,没有效果。
方法一:
从selenium客户端,我试图在DesiredCapabilities中的RemoteWebDriver上设置LoggingPreferences:
DesiredCapabilities desiredCapabilities = DesiredCapabilities.firefox();
LoggingPreferences logs = new LoggingPreferences();
logs.enable(LogType.BROWSER, Level.SEVERE);
logs.enable(LogType.CLIENT, Level.SEVERE);
ogs.enable(LogType.DRIVER, Level.SEVERE);
logs.enable(LogType.SERVER, Level.SEVERE);
desiredCapabilities.setCapability(CapabilityType.LOGGING_PREFS, logs);
desiredCapabilities.setCapability(FirefoxDriver.PROFILE, profile);
WebDriver driver = new RemoteWebDriver(new URL(host:4444/wd/hub"),
desiredCapabilities);
方法2:我尝试更改配置文件首选项:
FirefoxProfile profile = new FirefoxProfile();
profile.setPreference("webdriver.log.driver", "OFF");
profile.setPreference("webdriver.log.file","/dev/null");
方法3:我试图在位于/opt/selenium/config.json的容器中修改config.json:
{
"capabilities": [
{
"browserName": "*firefox",
"maxInstances": 1,
"seleniumProtocol": "Selenium"
},
{
"browserName": "firefox",
"maxInstances": 1,
"seleniumProtocol": "WebDriver"
}
],
"configuration": {
"proxy": "org.openqa.grid.selenium.proxy.DefaultRemoteProxy",
"maxSession": 1,
"port": 5555,
"register": true,
"registerCycle": 5000,
"logLevel":FATAL
}
}
到目前为止,我一直无法做任何改变了日志记录行为的事情。
答案 0 :(得分:3)
@Scott
Selenium代码库使用Java Utils Logger。所以也许你可以尝试传递一个自定义的logging.properties,其中日志级别被提升,看看是否有帮助。 [请参阅here以了解有关logging.properties的更多信息]
LoggingPreferences类主要用于调整仅针对给定会话检索的日志级别[至少是我认为的那样]并且它不会改变节点/网格的JVM的日志记录级别在。下运行。
对于Selenium服务器独立版,可以通过JVM参数“selenium.LOGGER.level”更改日志级别