#include <IE.au3>
$sUrl = 'http://autoit-script.ru/index.php?action=forum'
$iMaxTime = 20000
$iStartTime = TimerInit()
$oIE = _IECreate($sUrl, 0, 1, 0)
_IELoadWait($oIE, 0, $iMaxTime)
If _IEPropertyGet($oIE, "statustext") = 'Готово' Then
$sTime = Round(TimerDiff($iStartTime) / 1000, 2) & ' сек.'
MsgBox(64, 'Test', 'Страница загрузилась за ' & $sTime)
Else
MsgBox(16, 'Test', 'Загрузка страницы не произошла за заданное время')
_IEQuit($oIE)
EndIf