Posts: 2
Threads: 1
Joined: Oct 2009
Reputation:
0
10-07-2009, 08:38 PM
Hi,
I am crated a QTP script to cover 25 data point validations( 25 rows of data in my Global sheet). It is created to cover 25 manual test cases.
If I execute this script from QC, I can see only one Pass or Fail for my test script.
My question is how I can show in the Quality Center for each of my data line pass or fail. I mean I want to see 25 results seperate in the Quality Center Test Lab.
Please, any solutions!!!
Regards,
Desh
Posts: 1,003
Threads: 1
Joined: Jul 2009
Reputation:
5
10-08-2009, 11:54 AM
Heard of anything called Run Iteration Results on QC ? If not,
Select the test which had completed the automation execution on your test lab, double click the test, you will see run iterations. Select the report for the execution you wanted and click on download report.
PS : You will need to install QTP Addin for QC from the Addins page on QC. Only then the report will be visible in the HTml Format.
Basanth
Give a fish to a man and you feed him for a day..Teach a man how to fish and you feed him for life.
Posts: 2
Threads: 1
Joined: Oct 2009
Reputation:
0
10-08-2009, 08:38 PM
Basanth,
Thanks for the reply.
I understood what you are saying. But, I am looking for 25 results seperately. Here we are getting 25 iteration in one result. Is there any way?
Regards,
Desh
Posts: 1,003
Threads: 1
Joined: Jul 2009
Reputation:
5
10-09-2009, 12:12 PM
(This post was last modified: 10-09-2009, 12:21 PM by basanth27.)
Yes, You can exploit QC AOM and download the reports, Start's like this,
Code:
Set oQC = CreateObject("TDAPIOLE80.Connect")
Then, Exploit the TestFactory and the RunFactory. Iterations are stored in the RunFactory.
Search this forum and you will get what you are looking for.
Sorry Desh, Please correct,
Code:
Set oQC = CreateObject("TDAPIOLE80.Connect")
to
Set oQC = CreateObject("TDAPIOLE80.TDConnection")
Basanth
Give a fish to a man and you feed him for a day..Teach a man how to fish and you feed him for life.