51Testing软件测试论坛

标题: QTP有判断一个Test开始和结束的函数吗? [打印本页]

作者: peimzh    时间: 2008-7-4 16:14
标题: QTP有判断一个Test开始和结束的函数吗?
QTP有判断一个Test开始和结束的函数吗?
作者: dreamever    时间: 2008-7-5 15:39
我也不知道有没有这样的一个函数,我是用别的方法检测脚本运行是否结束的。假设有一个脚本Script,我们首先在全局数据表中或数据文件中设置一个变量isEnd  = false,那么脚本的结果如下:
Script代码结果:
isEnd  = false'初始化标志位为false,
while not isEnd
……'这里是你的脚本
wend
isEnd  = true'当所有的脚本运行结束后,将标志位设置为true
作者: zte_boy    时间: 2008-7-5 15:55
object.IsRunning
test在运行返回True,否则返回False
作者: zte_boy    时间: 2008-7-5 15:56
同时在结合VBS的date、time函数,就可以知道test开始时间和结束时间
作者: zte_boy    时间: 2008-7-5 15:57
建议去了解下QuickTest Automation Reference,呵呵
会有很大帮助的
作者: peterz    时间: 2008-7-5 21:57
IsRunning Property

Description
Indicates whether the open test or business component is currently running.

Syntax
object.IsRunning


Argument Description
object An expression evaluating to an object of type Test.

Value Type
Read-only. A Boolean value.
Possible Values

True--The test or component is running.
False--The test or component is not running.
作者: peimzh    时间: 2008-7-21 10:45
我想直接写在模板里面,每个Action就自动有一个模板,上面就有这个时间的写入




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