如何使用 VBA 在 QC 中按名称查找测试用例
How to find test cases by name in QC using VBA
所以我试图在 QC 中按名称查找测试用例
我可以通过 nodeID、Path 等找到测试用例,但不能通过名称找到测试用例。
我想做的是 QC Menu->Edit->Find(输入你的测试用例名称)
这可以使用 OTA 完成吗?
使用 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
所以我试图在 QC 中按名称查找测试用例 我可以通过 nodeID、Path 等找到测试用例,但不能通过名称找到测试用例。 我想做的是 QC Menu->Edit->Find(输入你的测试用例名称) 这可以使用 OTA 完成吗?
使用 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