컴퓨터/개발

파이썬 bluetooth 어쩌고 오류 해결책

하늘치 2021. 3. 2. 11:49
반응형
[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)

 

 

 

출처 : sulung-sulung.tistory.com/m/41?category=978576

반응형