如何在一个标签中一个接一个地打开不同的URL?

时间:2016-07-26 09:13:06

标签: vbscript

我有以下问题:

如何使用VBScript在一个标签中逐个打开(五分钟后)?

1 个答案:

答案 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之后重新开始的外部循环。