登录页面
HTML代码
<ul class="login_screen_mask">
<li><label for="username">Username:</label><input tabindex="1" type="text" autocapitalize="off" autocorrect="off" style="font-family: sans-serif; font-size: 12px; color: rgb(51, 51, 51); background-color: rgb(255, 255, 255); border: 1px solid rgb(51, 51, 51); margin: 0px; padding: 1px; opacity: 0.99;"></li>
<li><label for="password">Password:</label><input tabindex="2" type="password" style="font-family: sans-serif; font-size: 12px; color: rgb(51, 51, 51); background-color: rgb(255, 255, 255); border: 1px solid rgb(51, 51, 51); margin: 0px; padding: 1px; opacity: 0.99;"></li>
<li>
<div><input type="checkbox" style="width: 20px; border-width: 0px; opacity: 0.99;"><span>Remember my login (uses cookie)</span></div>
</li>
</ul>
这是登录页面的代码,其中给出了用户名和密码,但是与输入标记链接。该标签也没有id所以我需要去“login_screen_mask”类并搜索用户名和passoword的输入标签。我能够搜索所有内容,但无法在该输入框中插入值。请帮忙!
答案 0 :(得分:0)
enter code here