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.
구글 검색 결과,
개발 도구로 사용되는 크롬 브라우저의 버그라고 하는데, 전문 개발자가 아니라서 원인은 잘 모르겠지만, 조치 방법은 간단했다.
크롬 옵션으로 아래로 추가했더니 메시지가 더 이상 나오지 않았다.
chrome_options.add_experimental_option('excludeSwitches', ['enable-logging'])
'코딩 연습 > 코딩배우기' 카테고리의 다른 글
블로그 글 내용 저장 중 이모지 '\U0001f970' 에러 발생 (파이썬) (0) | 2021.12.26 |
---|---|
파이썬 selenium 라이브러리 - find_elements_by_* commands are deprecated. (0) | 2021.12.25 |
네이버 등 웹 페이지의 쿠키(cookie)를 가져와서 저장하기 (with Python) (0) | 2021.12.25 |
파이썬 pytube 오류 메시지 - AttributeError: 'NoneType' object has no attribute 'span' (4) | 2021.12.19 |
[파이썬 크롤링 연습] 쿠팡(Coupang) 상품 리스트 가져오기 (0) | 2021.12.12 |
댓글