I was trying to simply open and close a website and get it's title using Python3 and Selenium.
My code-
from selenium import webdriver
PATH = "C:\Program Files (x86)\chromedriver.exe"
driver = webdriver.Chrome(PATH)
driver.get("https://www.techwithtim.net")
print(driver.title)
driver.close()
It runs successfully but does show these error/warning in the terminal
DevTools listening on ws://127.0.0.1:3040/devtools/browser/7d22edc8-0e93-4498-a836-55e560ffc60b
[65744:16912:0614/221655.716:ERROR:device_event_log_impl.cc(214)] [22:16:55.716] Bluetooth: bluetooth_adapter_winrt.cc:1072 Getting Default Adapter failed.
[65744:16912:0614/221655.772:ERROR:device_event_log_impl.cc(214)] [22:16:55.773] USB: usb_device_handle_win.cc:1058 Failed to read descriptor from node connection: A device attached to the system is not functioning. (0x1F)
Can anybody please help? Note - I have installed python selenium module and chromewebdriver