带便携式IE的vbs脚本

时间:2016-04-14 10:15:49

标签: internet-explorer vbscript portable-applications

我需要你帮助解决问题。 我有这个脚本,



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登录?

感谢您的帮助

鲍勃

0 个答案:

没有答案