Hi,
I'm trying to automate a website login process. Everytime I use _IECreate("https://www.mail.google.com") it returns empty that is not allowing me to find Form other Input ids, Below is sample code :
$oIE = _IECreate("https://www.google.com")
_IELoadWait($oIE)
Local $o_form = _IEFormGetObjByName($oIE,"login")
Local $o_username= _IEGetObjByName($oIE,"username")
Local $o_password = _IEGetObjByName($o_form,"password")
Local $add = _IELinkGetCollection($oIE)
MsgBox(4,$o_form,o_password)
Help is greatly appreciated.
Thanks