2016-07-26 211 views

回答

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 

你最想要的網址後重新開始添加外環。

相關問題