【问题标题】:How to find test cases by name in QC using VBA如何使用 VBA 在 QC 中按名称查找测试用例
【发布时间】:2015-03-03 17:03:33
【问题描述】:

所以我试图在 QC 中按名称查找测试用例 我可以通过 nodeID、Path 等找到测试用例,但不能通过名称找到。 我想做的是像QC菜单->编辑->查找(输入您的测试用例名称) 这可以使用 OTA 完成吗?

【问题讨论】:

标签: vba hp-quality-center alm


【解决方案1】:

使用 TD 连接对象发送查询

set oCommand=oTDC.Command
oCommand.CommandText="Select * from TEST where TS_NAME Like'testname'"
oRecordSet.Execute
Do until recordset.EOR=true
/Get your test case details
recordset.next
Loop

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多