51Testing软件测试论坛

标题: 自动化对象模型怎么调用第三方的report [打印本页]

作者: lq1107    时间: 2009-4-26 07:36
标题: 自动化对象模型怎么调用第三方的report
dim qtApp

dim qttest

set qtApp = Createobject("QuickTest.Application")   '创建 Application 对象

qtApp.launch   ' 启动

qtApp.Options.Run.ViewResults = true

qtApp.Visible = True  '可见

qtApp.open "E:\Test1",true   '用只读的方法打开测试脚本

Set qtTest = qtApp.Test   '创建 Test 对象

Set qtResultsOpt = CreateObject("QuickTest.RunResultsOptions") ' 创建 Run Results Options 对象

qtResultsOpt.ResultsLocation = "E:\Test1\Res1" ' 设置测试结果保存位置

qtTest.run qtResultsOpt   '   执行测试

qtTest.close   ' 关闭测试

qtApp.quit    '关闭QTP

Set qtTest = Nothing ' 释放 Test 对象

set qtApp =nothing   '释放

--------------------------------------------------------------------------------
如果有多个Test,是不是会有多个qtResultsOpt.ResultsLocation ?
如果我不想用QTP自带的Results Report ,想用第三方的,在上段代码怎么调用?
作者: galahadts    时间: 2009-4-26 11:34
同问 帮顶




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