帮忙Gmail登录批处理

来源:百度知道 编辑:UC知道 时间:2024/06/11 11:14:12
帮忙Gmail登录批处理

Set ie = CreateObject("internetexplorer.application")
ie.Visible = False

ie.navigate "https://www.google.com/accounts/Login"

DO WHILE ie.ReadyState <> 4
loop

ie.document.all.Email.value = "xxxx@qq.com"
ie.document.all.Passwd.value = "xxxxxx"
ie.document.all.gaia_loginform.submit

保存为.vbs既可!