3

My Code:

from selenium import webdriver  
import time
    
web = webdriver.Chrome()
web.get('https://fs30.formsite.com/LB2014/wa03ei3cqi/index.html')
    
time.sleep(2)
    
FirstName = "Test"     
first = web.find_element('xpath', "//*[@id='RESULT_TextField-4']")
first.send_keys(FirstName)

Error in Powershell:

ERROR:device_event_log_impl.cc(215)] [14:44:23.883] USB: usb_service_win.cc:415 Could not read device interface GUIDs: The system cannot find the file specified. (0x2)

New to selenium and using python for automation. I tried looking up my error but couldn't find anyone with the same problem. Does anyone know what I need to do or have any pointers?

FiveO
  • 31
  • 1
  • 4
  • Check this thread: https://stackoverflow.com/questions/65080685/usb-usb-device-handle-win-cc1020-failed-to-read-descriptor-from-node-connectio – pcalkins Jan 18 '23 at 20:08
  • @pcalkins Hey, thanks for the link. I read through this twice and didn't really understand it. Could you help me out in understanding it? I am running Windows 11 – FiveO Jan 18 '23 at 20:49
  • 1
    It's just something logged from the browser. No need to worry about it. – pcalkins Jan 18 '23 at 21:38

0 Answers0