I creat script for login to game website, but I cann't login. The site check for hidden text. I want to know how to send the hidden text to password box.
below is my script;
#include <IE.au3>
#Open Internet Explorer and website audition auto
$oIE = _IECreate ("about:blank")
_IEPropertySet ( $oIE, "Width", "400")
_IEPropertySet ( $oIE, "Height", "600")
_IENavigate ($oIE, "http://sf.gg.in.th/member/logon_v2.aspx?d=d3a5673aa98ae4d3ec8d1e4cf6f01f13")
sleep (5000)
;$oIE = _IEAttach ("http://sf.gg.in.th/member/logon_v2.aspx?d=d3a5673aa98ae4d3ec8d1e4cf6f01f13", "URL")
sleep (5000)
$oForm1 = _IEFormGetObjByName ($oIE, "form1")
$username = "tattygame2"
$password = "siriratk"
$oQuery = _IEFormElementGetObjByName ($oForm1, "txtLogonX")
_IEFormElementSetValue ($oQuery, $username)
$oQuery1 = _IEFormElementGetObjByName ($oForm1, "txtPasswordX")
_IEFormElementSetValue ($oQuery1, $password)
thak you to everybody in advance.