문제:
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 중국어 웹사이트의 기타 관련 기사를 참조하세요!