; Kind of working except cookies block prompt stops a straight login, have to reload page to pass #include _IEErrorHandlerRegister() $user = "username" ;<<< Change username $pass = "password" ;<<< Change password Run('"' & @ProgramFilesDir & '\Internet Explorer\iexplore.exe" -private "about:blank""') WinWait("Blank Page") $oIE = _IEAttach("about:blank", "url") _IELoadWait($oIE) _IENavigate($oIE, "http://www.facebook.com") $oEvt = ObjEvent($oIE, "_IEEvent_") $size = _IEPropertyGet( $oIE, "hwnd") WinSetState( $size, "", @SW_MAXIMIZE) _IELoadWait ($oIE) $uForm = _IEFormGetObjByName ($oIE, "login_form") ;<<< Change to form html name on webpage $uText = _IEFormElementGetObjByName ($uForm, "email") ;<<< Change to input name of username field box within form on webpage _IEFormElementSetValue ($uText,$user) $pText = _IEFormElementGetObjByName ($uForm, "pass") ;<<