说明:
1、本段程序针对的邮箱为:163邮箱
2、请将程序中的两个 test(分别针对帐号和密码)改成你的相应帐号和密码
3、声明:对于利用本方法造成的密码泄露本人概不负责
- Set ie = CreateObject("internetexplorer.application")
- ie.navigate "http://mail.163.com"
- Wscript.Sleep 4000
- ie.document.getElementById("login163").username.Value= "test"
- ie.document.getElementById("login163").Password.Value = "test"
- ie.document.getElementById ("btn1").click
- Set ie = Nothing
复制代码
|