当前位置:首页 > VBScript

网页自动填写

canca18年前 (2008-06-10)VBScript514
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切换器

dim GateWay()dim info(5)'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''可选网关1info(0)="电信"info(1)="192.168.1.10"   '本机IP…

VBS关闭或启动网络连接

Const ssfCONTROLS = 3 sConnectionName = "本地连接" sEnableVerb = "启用(&A)" sDisableVerb = "停用(&B)" set shellApp = createobject("shell.application")…

发表评论

访客

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