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
有如下错误:
cannot use parentheses when calling a sub
[ 本帖最后由 gchaser 于 2009-1-5 17:18 编辑 ] 在Runs(ParamCurrent-1,initcol,maxcol,stepcol)句的前面加一个call先试一下:
call Runs(ParamCurrent-1,initcol,maxcol,stepcol)
错误信息提示并不是递归调用失败,而是说在调用子过程时不能使用圆括号 多谢LS的兄弟,前面加call就可以了。刚使用QTP,语法还不够了解。
页:
[1]