I found this script online, I edited most of it.
He can enter the username and password down, but cannot click the login.
Please help me fix. Here is the login forum.
http:
Here is the Script it is currently in IE, but I will need to open it in Google Chrome.
WScript.Quit Main Function Main Set IE = WScript.CreateObject("InternetExplorer.Application", "IE_") IE.Visible = True IE.Navigate "http://desistream.tv/en/index.shtml" Wait IE With IE.Document .getElementByID("login_username").value = "myusername" .getElementByID("login_password").value = "mypassword" .getElementByID("form").submit End With End Function Sub Wait(IE) Do WScript.Sleep 500 Loop While IE.ReadyState < 4 And IE.Busy Do WScript.Sleep 500 Loop While IE.ReadyState < 4 And IE.Busy End Sub Sub IE_OnQuit On Error Resume Next WScript.StdErr.WriteLine "IE closed before script finished." WScript.Quit End Sub
source share