QTP Script to Get Field Values from QC

1.1k Views Asked by At

I want to get the count of status(Pass/Fail) of all testcases present in QC by checking the execution grid. What is the method to retrieve the status and execution date of a test case ? Currently I am only able to get the test case name.

Code:

Set treeMgr = gTDConn.TestSetTreeManager 
Set tstTree = treeMgr.NodeByPath(TestSetPath) 
Set tstFactory = tstTree.testSetFactory 
Set tsetList = tstFactory.NewList("") 

For Each tset In tsetList 
  msgbox tset.Name 
next
0

There are 0 best solutions below