我有以下问题:
如何使用VBScript在一个标签中逐个打开(五分钟后)?
答案 0 :(得分:1)
只需在循环中依次导航到URL:
list = Array("http://www.example.com", ...)
Set ie = CreateObject("InternetExplorer.Application")
ie.Visible = True
For Each url In list
ie.Navigate url
While ie.ReadyState <> 4
WScript.Sleep 100
Wend
WScript.Sleep 300000 'wait 5 min before loading the next page
Next
添加要在最后一个URL之后重新开始的外部循环。