0
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
from selenium import webdriver
chrome_driver = 'D:\Code\chromedriver'
driver = webdriver.Chrome(executable_path=chrome_driver)
driver.get("https://secure-retreat-92358.herokuapp.com/")

first_name = driver.find_element(By.NAME, "fname")
first_name.send_keys("Sumukh")
Second_name = driver.find_element(By.NAME, "lname")
Second_name.send_keys("Sharma")
email = driver.find_element(By.NAME, "eamil")
email.send_keys("devilanime088@gmail.com")
button = driver.find_element(By.CSS_SELECTOR, "form button")
button.click()
driver.quit()

[23876:10720:1025/231637.440:ERROR:device_event_log_impl.cc(214)] [23:16:37.440] USB: usb_device_handle_win.cc:1048 Failed to read descriptor from node connection: A device attached to the system is not functioning. (0x1F) [23876:10720:1025/231637.444:ERROR:device_event_log_impl.cc(214)] [23:16:37.444] USB: usb_device_handle_win.cc:1048 Failed to read descriptor from node connection: A device attached to the system is not functioning. (0x1F) [23876:10720:1025/231637.445:ERROR:device_event_log_impl.cc(214)] [23:16:37.444] USB: usb_device_handle_win.cc:1048 Failed to read descriptor from node connection: A device attached to the system is not functioning. (0x1F) [19832:25172:1025/231835.237:ERROR:gpu_init.cc(521)] Passthrough is not supported, GL is disabled, ANGLE is

While running this simple automated script i'm getting this error i tried to looked into various stack overflow answers for the similar type of problem but can't seem to find the answer p.s. - my chrome version is matches with my chrome driver version (Version 106.0.5249.119 (Official Build) (64-bit)

Sumukh
  • 9
  • 1
  • Seeing some answers at this similar question that may be helpful. https://stackoverflow.com/questions/64927909/failed-to-read-descriptor-from-node-connection-a-device-attached-to-the-system – JNevill Oct 25 '22 at 18:12
  • did that not working not even one of 'em – Sumukh Oct 25 '22 at 18:29

0 Answers0