Hello! Its my first time on this forum, usually i was just reading topics here, but from the beggining of my adventure with AutoIt! i have problems with clicking buttons in IE.
Always i was using something like that:
Local $oInputs = _IEFormElementGetObjByName($ie, "submit")
For $oInput In $oInputs
If $oInput.title == "login" Then
_IEAction($oInput, "click")
_IELoadWait($ie)
Exitloop
EndIf
Next
And now i have problem with new button/page :
<a title="Login" href="javascript:void(0);" onclick="submitLogin(document.loginForm);return false;" class="btn-senden btn-login">Login</a>
Im fighting with clicking this button for like 2 days, i read whole forums and still cant find any solutions, can you please good peoples help me?
Thanks in advance