#include <IE.au3>
$oIE = _IECreate("http://www.kaixin001.com/")
_IELoadWait($oIE)
$o_form = _IEFormGetObjByName($oIE, "loginform") ;找到表单
$o_txtuser = _IEFormElementGetObjByName($o_form, "email") ;找到表单中的用户名
$o_txtpass = _IEFormElementGetObjByName($o_form, "password") ;找到表单中的 密码
_IEFormElementSetValue($o_txtuser, "myeamil@163.com") ;你的登录帐号
_IEFormElementSetValue($o_txtpass, "12345678") ;你的登录密码
$oSubmit = _IEGetObjByName($oIE, "btn_dl") ; input type="submit" id="btn_dl" value="登录"
_IEAction($oSubmit, "click")
_IELoadWait($oIE, 500) ;
|