QTP的那些事--执行用例后提交bug到QC中

简介:
'功能:提交bug信息到QC中
'函数参数:url代表连接QC的url(例如http://localhost:8080/qcbin),projectname代表需要执行'QC
'连接的工程名称,username代表QC的用户名,password代表连接QC的用户的密码,buginfo代
'表连接QC后提交的bug信息,数组类型,数组中第一个代表bug的状态,第二个代表bug的主题,
'第三个代表bug的优先级,第四个代表bug需要指派给的人,第五个代表bug的发现人
function connectQC(url,projectname,username,password,buginfo())
'声明QC对象
Dim TDConnection 
Set TDConnection = CreateObject("TDApiOle.TDConnection") 
TDConnection.InitConnection url' URL for the DB 
TDConnection.ConnectProject projectname,username,password   ' Valid login information '登陆QC的工程名,用户和密码
'获得登陆后的操作
If TDConnection.Connected Then 
    MsgBox("Connected to " + chr (13) + "Server " + TDConnection.ServerName _ 
    + chr (13) +"Project " + TDConnection.ProjectName ) 
Else 
    MsgBox("Not Connected") 
End If 
'Get the IBugFactory 得到创建bug的对象
Set BugFactory = TDConnection.BugFactory 
'Add a new empty bug 
Set Bug = BugFactory.AddItem (Nothing) 
'Fill the bug with relevant parameters 
'提交bug的相关信息
buginfo=new array(5)
Bug.Status = buginfo(0)
Bug.Summary = buginfo(1)
Bug.Priority = buginfo(2)    ' depends on the DB 
Bug.AssignedTo = buginfo(3) ' user that must exist in the DB's users list 
Bug.DetectedBy = buginfo(4) ' user that must exist in the DB's users list 
'Post the bug to database (commit) 
Bug.Post 



本文转自hcy's workbench博客园博客,原文链接:http://www.cnblogs.com/alterhu/archive/2011/12/31/2309161.html ,如需转载请自行联系原作者。

目录
相关文章
|
8月前
|
Kubernetes 测试技术 Go
sealos issue #2157 debug 思路流程记录
sealos issue #2157 debug 思路流程记录
76 0
|
5月前
|
测试技术 Windows
win7 x64配置TestLink执行用例提交BUG配置[连接mantisbt]
这篇文章介绍了如何在Windows 7 x64系统上配置TestLink以执行测试用例并提交BUG到MantisBT,包括修改TestLink和Mantis的配置文件以实现两者之间的BUG关联,以及在Mantis中删除BUG时自动删除TestLink中的关联。
53 0
|
测试技术 Python
Pytest用例执行的先后顺序
Pytest用例执行的先后顺序
126 0
|
测试技术
29-pytest-运行上次失败用例
29-pytest-运行上次失败用例
|
测试技术
16-pytest-skip跳过用例
16-pytest-skip跳过用例
|
移动开发 测试技术
pytest学习和使用24-如何清空allure报告历史记录?我每次都手动删除,有点Low了~
pytest学习和使用24-如何清空allure报告历史记录?我每次都手动删除,有点Low了~
127 0
pytest学习和使用24-如何清空allure报告历史记录?我每次都手动删除,有点Low了~
|
测试技术
pytest学习和使用14-Pytest用例执行结果有哪几种状态?
pytest学习和使用14-Pytest用例执行结果有哪几种状态?
94 0
|
测试技术
软件测试面试题:lr中,如果你想停止执行出错的脚本,怎么做?
软件测试面试题:lr中,如果你想停止执行出错的脚本,怎么做?
90 0
|
测试技术 数据库 Windows
Pytest系列(7) - skip、skipif跳过用例
Pytest系列(7) - skip、skipif跳过用例
160 0
Pytest系列(7) - skip、skipif跳过用例
|
测试技术 数据处理
pytest(9)-标记用例(指定执行、跳过用例、预期失败)
pytest中提供的mark模块,可以实现很多功能,如: 1. 标记用例,即打标签 2. skip、skipif标记跳过,skip跳过当前用例,skipif符合情况则跳过当前用例 3. xfail标记为预期失败
pytest(9)-标记用例(指定执行、跳过用例、预期失败)