#include <IE.au3>
$oIE = _IECreate("http://www.zhubajie.com/task/user/login",0,1,1,1 )
_IELoadWait ($oIE)
$oInputs = _IETagNameGetCollection ($oIE, "INPUT")
For $oInput In $oInputs
if $oInput.name = "username" then
$oInput.value="用户名"
EndIf
Next
For $oInput In $oInputs
if $oInput.name = "userpass" then
$oInput.value="密码"
EndIf
Next
For $oInput In $oInputs
if $oInput.name = "login" then
$oInput.click
EndIf
Next
Exit