我需要你帮助解决问题。 我有这个脚本,
Dim IE
Set IE = CreateObject("InternetExplorer.Application")
IE.Visible = 1
IE.Navigate "https://accounts.google.com/ServiceLogin?service=mail&continue=https://mail.google.com/mail/&hl=it#identifier"
Do While (IE.Busy)
WScript.Sleep 10
Loop
With IE.Document
.getElementByID("Email").value = "email"
.getElementByID("signIn").click
WScript.Sleep 500
.getElementByID("Passwd").value = "password"
.getElementByID("signIn").click
End With

它工作正常但是对于一些IE版本它并没有因此我制作了一个IE便携版本并将其保存在usb闪存上。 它是一种强制脚本使用便携式IE的方法吗? 此外,如何取消选中单选按钮'保持登录'在gmail登录?
感谢您的帮助
鲍勃