0

我有一个登录网站的脚本。它在 Windows XP 上的 IE 8 上完美运行,但是当我在 Windows 7 上使用 IE8 尝试相同的脚本时,它不起作用。

有人可以解决这个问题吗?

WScript.Quit Main
Function Main
 Set IE = WScript.CreateObject("InternetExplorer.Application", "IE_")
 IE.Visible = True
 IE.Navigate "URL"
 Wait IE
 IE.Document.form.[username].value = "" 'username
 IE.Document.form.[password].value = "" 'Password
 IE.Document.form.Submit()    
End Function   
Sub Wait(IE)    
 Do  
  WScript.Sleep 500       
 Loop While IE.ReadyState <> 4 OR IE.Busy
End SUb
Sub IE_OnQuit
 On Error Resume Next
 WScript.StdErr.WriteLine "IE closed before script finished."
 WScript.Quit
End Sub 
4

0 回答 0