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?