[ERROR:device_event_log_impl.cc(211)] ... Failed to read descriptor from node connection: A device attached to the system is not functioning. (0x1F)
options.add_experimental_option('excludeSwitches', ['enable-logging'])
升級到ChromeDriver v87 和 Chrome v87 後,使用者在執行 Selenium 測試時遇到以下錯誤:
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/')解決方案:可以透過向 17.ChromewebOptions()物件加入以下實驗選項來抑制此錯誤:更新的程式碼區塊:透過排除啟用日誌開關,錯誤訊息將不會再顯示在控制台中,允許測試不間斷地運作。
以上是如何在 Windows 10 上使用 ChromeDriver v87 抑制 Selenium 中的「USB: usb_device_handle_win.cc:1020 無法從節點連線讀取描述符」錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!