51Testing软件测试论坛

标题: 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


有如下错误:
cannot use parentheses when calling a sub

[ 本帖最后由 gchaser 于 2009-1-5 17:18 编辑 ]
作者: dreamever    时间: 2008-12-26 09:26
在Runs(ParamCurrent-1,initcol,maxcol,stepcol)句的前面加一个call先试一下:
call Runs(ParamCurrent-1,initcol,maxcol,stepcol)
错误信息提示并不是递归调用失败,而是说在调用子过程时不能使用圆括号
作者: gchaser    时间: 2008-12-26 21:17
多谢LS的兄弟,前面加call就可以了。刚使用QTP,语法还不够了解。




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2