hey guys I like this code but it only work on certaint sites how do I get this to work for my google login? #include <IE.au3> #include <misc.au3> _IEErrorHandlerRegister() $oIE = _IECreate ("https://accounts.google.com/") $o_form = _IEFormGetCollection ($oIE, 0) $o_login = _IEFormElementGetCollection ($o_form, 0) $o_password = _IEFormElementGetCollection ($o_form, 1) $username = "user" $password = "pass" _IEFormElementSetValue ($o_login, $username) _IEFormElementSetValue ($o_password, $password) _IEFormSubmit ($o_form, False) $iTimer = TimerInit() ; Timeout timer