标题: qtp82 不支持函数的递归调用吗?已经解决,是支持的。 [打印本页] 作者: gchaser 时间: 2008-12-26 01:17 标题: qtp82 不支持函数的递归调用吗?已经解决,是支持的。 QTP8.2中,函数如下:
Function Runs(ParamCurrent,initcol,maxcol,stepcol)
If ParamCurrent=1 Then '最内层,运行测试脚步
RunTest()
else'不是最内层,继续递归调用。
Runs(ParamCurrent-1,initcol,maxcol,stepcol)
End If
End Function