python/웹크롤링

Bluetooth: bluetooth_adapter_winrt.cc:1074 Getting Default Adapter failed. 에러

달죽 2020. 12. 17. 15:55
반응형

 

[15896:26680:1217/153844.486:ERROR:device_event_log_impl.cc(211)] [15:38:44.485] Bluetooth: bluetooth_adapter_winrt.cc:1073 Getting Default Adapter failed.

  

 

크롬 드라이버를 사용하던 중 이런 에러가 떴었다. 

이럴땐 크롬 옵션에다가 아래의 문구를 삽입해 주면 해결이 된다. 

 

options = webdriver.ChromeOptions()
options.add_experimental_option('excludeSwitches', ['enable-logging'])
driver = webdriver.Chrome(options=options)

 

반응형