Hi,
With regards to the script below, after submitting the form, the scripts did not echo the msgbox. Why is that so?
Thanks
#include <IE.au3>
Dim $oIE = _IECreate ("https://login.yahoo.com/config/login_verify2?.src=www&.intl=sg&.done=http://sg.yahoo.com/")
WinWaitActive("Sign in to Yahoo! - Windows Internet Explorer","Sign in to Yahoo")
WinSetState ( "Sign in to Yahoo! - Windows Internet Explorer", "Sign in to Yahoo", @SW_MAXIMIZE )
$yahoo_id_form = _IEGetObjByName ($oIE,"username")
_IEFormElementSetValue($yahoo_id_form,"your yahoo id")
$yahoo_password_form = _IEGetObjByName ($oIE,"passwd")
_IEFormElementSetValue($yahoo_password_form,"your password")
$oForm = _IEFormGetObjByName ($oIE, "login_form")
_IEFormSubmit ($oForm)
MsgBox(0,"","forms submitted")
_IEQuit ($oIE)