본문 바로가기
코딩 연습/코딩배우기

크롬 웹드라이버 '시스템에 부착된 장치가 작동하지 않습니다.' 메시지

by good4me 2021. 12. 25.

goodthings4me.tistory.com

 


python으로 selenium과 chrome webdriver를 사용해서 네이버 스크래핑 스터디 중에 '시스템에 부착된 장치가 작동하지 않습니다.'라는 아래와 같은 메시지가 출력되었다.

시스템에 부착된 장치가 작동하지 않습니다

시스템에 부착된 장치가 작동하지 않습니다.

  driver = webdriver.Chrome('./chrome_driver/chromedriver.exe', options=chrome_options)

DevTools listening on ws://127.0.0.1:49788/devtools/browser/80e9ee00-32ad-41cf-a228-7a615e0b9df9
[5568:14456:1225/132928.765:ERROR:chrome_browser_main_extra_parts_metrics.cc(226)] crbug.com/1216328: Checking Bluetooth availability started. Please report if there is no report that this ends.
[5568:14456:1225/132928.766:ERROR:chrome_browser_main_extra_parts_metrics.cc(229)] crbug.com/1216328: Checking Bluetooth availability ended.
[5568:14456:1225/132928.767:ERROR:chrome_browser_main_extra_parts_metrics.cc(232)] crbug.com/1216328: Checking default browser status started. Please report if there is no report that this ends.
[5568:9056:1225/132928.770:ERROR:device_event_log_impl.cc(214)] [13:29:28.769] USB: usb_device_handle_win.cc:1048 Failed to read descriptor from node connection: 시스템에 부착된 장치가 작동하지 않습니다. (0x1F)        
[5568:9056:1225/132928.770:ERROR:device_event_log_impl.cc(214)] [13:29:28.769] USB: usb_device_handle_win.cc:1048 Failed to read descriptor from node connection: 시스템에 부착된 장치가 작동하지 않습니다. (0x1F)        
[5568:9056:1225/132928.772:ERROR:device_event_log_impl.cc(214)] [13:29:28.771] USB: usb_device_handle_win.cc:1048 Failed to read descriptor from node connection: 시스템에 부착된 장치가 작동하지 않습니다. (0x1F)        
[5568:9056:1225/132928.772:ERROR:device_event_log_impl.cc(214)] [13:29:28.772] USB: usb_device_handle_win.cc:1048 Failed to read descriptor from node connection: 시스템에 부착된 장치가 작동하지 않습니다. (0x1F)        
[5568:14456:1225/132928.791:ERROR:chrome_browser_main_extra_parts_metrics.cc(236)] crbug.com/1216328: Checking default browser status ended.

good4me.co.kr


구글 검색 결과,

개발 도구로 사용되는 크롬 브라우저의 버그라고 하는데, 전문 개발자가 아니라서 원인은 잘 모르겠지만, 조치 방법은 간단했다.

크롬 옵션으로 아래로 추가했더니 메시지가 더 이상 나오지 않았다.

chrome_options.add_experimental_option('excludeSwitches', ['enable-logging'])

 

 

댓글