当前位置:首页 > VBScript > 正文内容

网页自动填写

canca18年前 (2008-06-10)VBScript482
Set ie = CreateObject("internetexplorer.application")
ie.Visible = True
ie.navigate "http://www.meecall.com/mobile/"
ie.Silent=true
While ie.busy
    wscript.sleep 200
wend
dim usernameobj,passwordeobj
ie.document.getElementsByName("username")(0).value = "1234"
ie.document.getElementsByName("password")(0).value = "1234"
'usernameobj.value = "1234"
'passwordeobj.value = "12223323"

扫描二维码推送至手机访问。

版权声明:本文由Ant.Master's Blog发布,如需转载请注明出处。

本文链接:https://iant.work/post/408.html

标签: VBScript
分享给朋友:
返回列表

没有更早的文章了...

下一篇:vbs脚本 ip切换器

“网页自动填写” 的相关文章

IIS批量添加屏蔽或允许访问的IP VBS版

  '/*=========================================================================   ' * Intro      ...

发表评论

访客

◎欢迎参与讨论,请在这里发表您的看法和观点。