I am getting this error on selenium python

2.8k Views Asked by At

This error has no relates to my web scraping bot at all. my code does not cause this error. it is just there, and I would like to get rid of it. any ideas?

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

1

There are 1 best solutions below

0
On

Try disabling the logging when you initiate your driver:

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

I can't reproduce this to tell you if it will work however give it a go and let us know. ...Out of site, out of mind?