Hello the community, I'm new to AutoIT and try to build a kinda small project I'm trying to autologin at http://www.nyleria.royaumes.net/login.php but I can't find the form name in order to use _IEFormGetObjByName Can anyone tell me if he has found it ? And if yes,how please? Thanks in advance Btw,my code looks like this : #include <IE.au3>
$oIE = _IECreate()
_IENavigate($oIE,"http://www.nyleria.royaumes.net/login.php")
$oform = _IEFormGetObjByName($oIE, "styleText")
$oLogin = _IEFormElementGetObjByName($oIE,"Royaume :")
$oPass = _IEFormElementGetObjByName($oIE,"Mot de passe :")
_IEFormElementSetValue($oLogin,"user")
_IEFormElementSetValue($oPass,"pass")