- Set ie=WScript.CreateObject("InternetExplorer.Application")
- ie.visible=true
- ie.navigate "http://www.dezhi.com/user/login"
- Do
- Wscript.Sleep 200
- Loop Until ie.ReadyState=4
- ie.document.getElementById("email").value="账号"
- ie.document.getElementById("password").value="密码"
- ie.document.getElementById("doLogin").click()
-
-
-
- Wscript.Sleep 10000
-
- IE.Quit
复制代码
|