如何在QTP中实现循环测试?请各位高手不吝赐教,谢谢!

2025-01-02 09:51:41
推荐回答(3个)
回答1:

将记事本打开和关闭作为2个action放在一个test里面,并设置action属性为可重用。
然后新建一个text,添加一个exist action,把那2个action添加进来。

for i=1 to 100
runaction "记事本打开action"
runaction "记事本关闭action"
next

回答2:

CurrRow = DataTable.GetCurrentRow
RowCount =DataTable.GetRowCount
For i=CurrRow to RowCount
'
'
DataTable.SetNextRow
NEXT

回答3:

for i =1 to 100
'记事本打开的录制脚本
'记事本关闭的录制脚本
next