2016-07-26 20 views

答えて

1

単にURLをループ内で次々に移動します。あなたが最後の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 

は、外側のループを追加します。

関連する問題