QTP自动化测试之VBScript基础知识教程(9)
4 [statements] 5 Loop [{ While | Until } condition] 主要参数: condition:数值或字符串表达式,其值为True或False。如果condition为Null,则condition被当作False。 statements:
5 |
Loop [{ While | Until } condition] |
主要参数:
condition:数值或字符串表达式,其值为True或False。如果condition为Null,则condition被当作False。
statements:当condition为True时被重复执行的一条或多条命令。
Exit Do可以退出循环体,循环可以嵌套使用。
view sourceprint?
01 |
Do Until response = vbNo |
02 |
myNum = Int(6 * Rnd + 1) |
03 |
response = MsgBox(myNum & "想要另一个数吗?" , vbYesNo) |
07 |
check = True : counter = 0 |
原文转自:http://www.ltesting.net