问题:
升级到 ChromeDriver v87 和 Chrome v87 后,用户在运行 Selenium 测试时遇到以下错误:
[ERROR:device_event_log_impl.cc(211)] ... Failed to read descriptor from node connection: A device attached to the system is not functioning. (0x1F)
解决方案:
可以通过向 webdriver.ChromeOptions() 对象添加以下实验选项来抑制此错误:
options.add_experimental_option('excludeSwitches', ['enable-logging'])
更新的代码块:
from selenium import webdriver options = webdriver.ChromeOptions() options.add_argument("start-maximized") options.add_experimental_option('excludeSwitches', ['enable-logging']) driver = webdriver.Chrome(options=options, executable_path=r'C:\WebDrivers\chromedriver.exe') driver.get('https://www.google.com/')
通过排除启用日志记录开关,错误消息将不再显示在控制台中,允许测试不间断地运行。
以上是如何在 Windows 10 上使用 ChromeDriver v87 抑制 Selenium 中的'USB: usb_device_handle_win.cc:1020 无法从节点连接读取描述符”错误?的详细内容。更多信息请关注PHP中文网其他相关文章!