Micro Focus QTP (UFT) Forums
Code to run all QTP scripts and see all results - Printable Version

+- Micro Focus QTP (UFT) Forums (https://www.learnqtp.com/forums)
+-- Forum: Micro Focus UFT (earlier known as QTP) (https://www.learnqtp.com/forums/Forum-Micro-Focus-UFT-earlier-known-as-QTP)
+--- Forum: UFT / QTP Beginners (https://www.learnqtp.com/forums/Forum-UFT-QTP-Beginners)
+--- Thread: Code to run all QTP scripts and see all results (/Thread-Code-to-run-all-QTP-scripts-and-see-all-results)

Pages: 1 2


RE: Code to run all QTP scripts and see all results - Pkapoor - 07-05-2013

1. When i try downloading MTM .. it first downloaded CodecPackage.exe and now today when in tried it downloaded ImageEditorSetup.exe!
Where can i get MTM?

2. For Custom report can I see report for all test cases in 1 report?


RE: Code to run all QTP scripts and see all results - Ravi - 08-15-2017

(07-04-2013, 05:42 PM)supputuri Wrote: Hi PKapoor,

Sorry for the delay...
1)Where I can get the MTM?
check this link : Download MTM
2) Custom Reporting: you have to write your own custom report using the Reporter class in QTP.
3) How to change the results path?
User the QTP object (AOM to change the automation test results path).
Snippet:

Code:
'Create the Run Results object
set oQTPResultsLoc = CreateObject("QuickTest.RunResultsOptions")
'Make sure that you have the required folders for results storing.
'In this example C:\Test Results is the folder where I want to store my results with Test Case name.

'Now change the results location
oQTPResultsLoc .ResultsLocation "C:\Test Results\" & Environment("TestName")

Once your script execution is completed you can see each script report in this location.
Ping me if you are looking for any more help in this regard.



hi,
can i get your mailĀ id.

Thank you