My_User_Name := "user"
My_Pass_Word := "pass"
web_browser := ComObjCreate("InternetExplorer.Application")
web_browser.Visible := true
web_browser.Navigate("www.urlpage.com")
while web_browser.busy ; a while loop is a way to keep the script testing an IF like expression
sleep 100 ; IF web_browser.busy is true then sleep 100 milliseconds
sleep 5000
username_input := web_browser.document.getElementById("enter correct id here")
username_input.value := My_User_Name
password_input := web_browser.document.getElementById("enter correct id here")
password_input.value := My_Pass_Word
web_browser.document.getElementById("enter correct id here").click()
Return
Experts Exchange (EE) has become my company's go-to resource to get answers. I've used EE to make decisions, solve problems and even save customers. OutagesIO has been a challenging project and... Keep reading >>
Our community of experts have been thoroughly vetted for their expertise and industry experience.