Nelson78
Well-known Member
- Joined
- Sep 11, 2017
- Messages
- 526
- Office Version
- 2007
Hello everybody.
I'm trying to navigate a website as hundreds of time I've done. Probably I'm a little bit tired, anyway this time I cannot login because a particular framework with tabindex.
The usual strategy doesn't work (no errors but nothing happens).
The HTML code:
Any suggestions?
I'm trying to navigate a website as hundreds of time I've done. Probably I'm a little bit tired, anyway this time I cannot login because a particular framework with tabindex.
The usual strategy doesn't work (no errors but nothing happens).
HTML:
IE.document.getElementById("login_txt_user").Value = myId
IE.document.getElementById("login_txt_pw").Value = myCode
IE.document.getElementById("login_btn_login").Click
The HTML code:
HTML:
<div id="login_lbl_user" >Username/e-Mail</div>
<div id="login_txt_user" ><input tabindex="1" type="text" name="USER" placeholder="Username/Mail"></div>
<div id="login_lnk_forgottenuser" ><A tabindex="-1" href="javascript:forgottenuserid();" >
Forgotten username? </A>
</div>
<div id="login_lbl_pw" >Password</div>
<div id="login_txt_pw" ><input tabindex="2" type="password" name="PASSWORD" placeholder="Password" autocomplete="off"></div>
<div id="login_lnk_forgottenpassword">
<A tabindex="-1" href="javascript:forgottenpassword();" >
Forgotten password?</A>
</div>
<div id="login_btn_login" ><A tabindex="3" href="javascript:loginUser();" >Login</A></div>
Any suggestions?