Do...Loop 语句

相关项: GUI 操作、脚本化 GUI 组件和函数库

Do...Loop 语句指示 UFT One 在条件为 true 或直到条件变成 true 前执行某个语句或一系列语句。它有以下语法:

Do [{while} {until} 条件]
	语句
Loop

描述

条件

要满足的条件。

语句

循环期间要执行的某个语句或一系列语句。

示例: 在以下示例中,UFT One 使用 Do...Loop 计算鼠标价格的阶乘值:

Price = Browser("Advantage Shopping").Page("Advantage Shopping").WebElement("$9.99").GetTOProperty("innertext")
total = 1
i = 1
Do while i <= Price
    total = total * i
    i = i + 1
    Loop
Msgbox "!"&Price & "="& total

提示: 使用“编辑”>“代码段”>“Do...While”或“编辑”>“代码段”>“Do...Until”菜单命令将语句自动插入到测试中。