在网页内容加载完全之后返回.
#include <IE.au3>
_IELoadWait ( ByRef $o_object [, $i_delay = 0 [, $i_timeout = -1]] )
$o_object | InternetExplorer.Application或DOM组件的对象变量 |
$i_delay | [可选参数]: 检查状态前等待的毫秒值 |
$i_timeout | [可选参数]: 退出程序前等待的时间(默认 = 300000毫秒;5分钟) |
成功: | 返回 1 |
失败: | 返回 0并设置@ERROR |
@Error: | 0 ($_IEStatus_Success) = 无错误 |
1 ($_IEStatus_GeneralError) = 一般错误 | |
3 ($_IEStatus_InvalidDataType) = 无效数据类型 | |
4 ($_IEStatus_InvalidObjectType) = 无效对象类型 | |
6 ($_IEStatus_LoadWaitTimeout) = 等待加载超时 | |
8 ($_IEStatus_AccessIsDenied) = 访问被拒绝 | |
9 ($_IEStatus_ClientDisconnected) = 客户端断开 | |
@Extended: | 包含无效参数数量 |
; *******************************************************
; 示例 1 - 打开 AutoIt 论坛页面, 使用 tab 到 "View new posts"
; 链接并用回车键激活.
; 然后在继续前等待页面加载结束.
; *******************************************************
#include <IE.au3>
Local $oIE = _IECreate("http://www.autoitscript.com/forum/index.php")
Send("{TAB 12}")
Send("{ENTER}")
_IELoadWait($oIE)