Hi there I cant figure out for the life of me how to get this code to work in Google Chrome.
Its an auto login for facebook and works flawlessly on Internet Explorer.
Dim IE
Set IE = CreateObject("InternetExplorer.Application")
IE.Visible = 1
IE.navigate "https://www.facebook.com"
Do While (IE.Busy)
WScript.Sleep 10
Loop
Set Helem = IE.document.getElementByID("email")
Helem.Value = "" ' change this to yours
Set Helem = IE.document.getElementByID("pass")
Helem.Value = "" ' change this to yours
Set Helem = IE.document.Forms(0)
Helem.Submit
Any help is greatly appreciated, thanks.
Its an auto login for facebook and works flawlessly on Internet Explorer.
Dim IE
Set IE = CreateObject("InternetExplorer.Application")
IE.Visible = 1
IE.navigate "https://www.facebook.com"
Do While (IE.Busy)
WScript.Sleep 10
Loop
Set Helem = IE.document.getElementByID("email")
Helem.Value = "" ' change this to yours
Set Helem = IE.document.getElementByID("pass")
Helem.Value = "" ' change this to yours
Set Helem = IE.document.Forms(0)
Helem.Submit
Any help is greatly appreciated, thanks.