我有一个名为的数组$urls
,其中包含 URL。我想_IENavigate
在For
-loop 中使用来访问每个 URL,但不知道如何使用带有_IENavigate
.
这是我到目前为止所拥有的:
If Not _FileReadToArray("\urls.txt", $urls) Then
MsgBox(4096, "Error", " Error reading log to Array. Error:" & @error)
Exit
EndIf
For $u = 1 to $urls[0]
_IENavigate($mIE, $urls)
Next