07-04-2013, 05:42 PM
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:
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.
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.
Thanks,
SUpputuri
SUpputuri