这个是利用webbrowser实现input的输入用户名、密码并点击。
<input name="UserName" type="text" id="UserName" tabindex="1" autocomplete="off" class="username" />
<input name="password" type="password" id="password" tabindex="2" class="pwd" autocomplete="off" />
<input type="submit" name="login" value="登录" onclick="checkUser();" id="login" class="login-btn"
Set doc = Webbrowser1.Document
doc.body.All("UserName").Value = Text1(1).Text
'==用户名
doc.body.All("password").Value = Text1(2).Text
'==密码
doc.body.All("login").Click
[此贴子已经被作者于2021-5-11 15:54编辑过]