Hello, thank you for the reply. Here is the entire code. I just replace URL string, but the error is still there (
--> IE.au3 V2.4-0 Error from function _IENavigate, $_IEStatus_InvalidObjectType
--> IE.au3 V2.4-0 Error from function _IELoadWait, $_IEStatus_InvalidObjectType
)
#include <IE.au3>
#include <ScreenCapture.au3>
#include <array.au3>
Local $oIE = _IECreate("about:blank")WinSetState(_IEPropertyGet($oIE, "hwnd"), "", @SW_MAXIMIZE)
local $srv[3] = ["CPU","Memory_Physical_used","Memory_Virtual_used"]
for $i = 0 to 2
$url = "XXX" & "&srv=" & $srv[$i]
_IENavigate($oIE, $url)
Sleep(500)
_IELoadWait($oIE)
_ScreenCapture_Capture(@ScriptDir & "\" & $srv[$i] & ".png")
Sleep(500)
Next
Any ideas? Thank you.
M.