Not able to get undetected-chromedriver.exe
download file
I am using undetected-chromedriver
in Python. I have installed undetected-chromedriver
using pip install undetected-chromedriver
Below is my code
import undetected_chromedriver as uc
driver = uc.Chrome()
# Setting Driver Implicit Time out for An Element
driver.implicitly_wait(10)
# Maximize the window
driver.maximize_window()
time.sleep(2000)
print("maxmized window")
driver.get("http://example.net")
Error I am getting with above code once browser is launched is as below
DevTools listening on ws://127.0.0.1:65496/devtools/browser/a66dad5d-073d-478c-a291-e29a127a2ecb
[15220:11524:0210/192501.116:ERROR:device_event_log_impl.cc(218)] [19:25:01.116] USB: usb_device_handle_win.cc:1046 Failed to read descriptor from node connection: A device attached to the system is not functioning. (0x1F)
[15220:11524:0210/192501.123:ERROR:device_event_log_impl.cc(218)] [19:25:01.123] USB: usb_device_handle_win.cc:1046 Failed to read descriptor from node connection: A device attached to the system is not functioning. (0x1F)
https://pypi.org/project/undetected-chromedriver/#history
I need exe of undetected-chromedriver , can you please help
Also while instantiating I am getting can not find declaration, however I have installed pip install undetected-chromedriver
Thanks in advance