本文介绍了如何在使用chrome canary执行selenium python脚本时抑制控制台错误/警告/信息消息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在运行使用Chrome Canary进行硒测试的python脚本(下面的完整脚本链接)。测试似乎运行良好,但是,在控制台上显示了很多错误/警告/信息消息。



有没有办法抑制这些消息?我曾尝试过:
chrome_options.add_argument( - silent),但没有帮助。我无法找到正确的解决方案。感谢任何帮助。



Python脚本:



Python:3.6.3
Selenium:3.6.0
Chrome Canary:63.0.3239.5 (64位)
ChromeDriver:2.33



解决方案

尝试options.add_argument('log-level = 3')。

log-level:
设置最小日志级别。
有效值从0到3:

  INFO = 0,
WARNING = 1,
LOG_ERROR = 2,
LOG_FATAL = 3.

默认为0。


I am running python script (complete script link below) for selenium test using Chrome Canary. The test seems to be running fine, however, there are lots of error/warning/info messages displayed on the console.

Is there a way to suppress these messages? I have tried: chrome_options.add_argument("--silent"), but does not help. I am not able to find the right solution. Appreciate any help.

Python script : Example script provided here

Python: 3.6.3Selenium: 3.6.0Chrome Canary: 63.0.3239.5 (64 bit)ChromeDriver : 2.33

解决方案

Try options.add_argument('log-level=3').

log-level:Sets the minimum log level.Valid values are from 0 to 3:

INFO = 0,
WARNING = 1,
LOG_ERROR = 2,
LOG_FATAL = 3.

default is 0.

这篇关于如何在使用chrome canary执行selenium python脚本时抑制控制台错误/警告/信息消息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 05:23