Hi, how to automate the following scenario-
Each test run report will be saved in different folders , like if I select SmokeTest from dropdownlist in .rxtst report would write in SmokeTestFolder same goes for Regression after running the test report would write to Regression folder , all folders are in networ or shared drive, currently all reports are saved in same location, not able to tell which test set ran w/out openning the each report individually.
Thank you in advance
Report path
- Support Team
- Site Admin
- Posts: 12167
- Joined: Fri Jul 07, 2006 4:30 pm
- Location: Graz, Austria
Re: Report path
Hello,
You could use command line parameters to run your tests.
By using /rc you could run a specific configuration (e.g. SmokeTest).
By using /rf you could store test reports to a specified location.
This would allow you to separate reports.
Please take a look at our User Guide for more information about Running Tests via Command Line.
Regards,
Markus (T)
You could use command line parameters to run your tests.
By using /rc you could run a specific configuration (e.g. SmokeTest).
By using /rf you could store test reports to a specified location.
This would allow you to separate reports.
Please take a look at our User Guide for more information about Running Tests via Command Line.
Regards,
Markus (T)
Re: Report path
Thank you Markus, I am able to create Specific folder but the problem its created with extension file with .rxlog even though I renamed it with .html at report file in TestSuite,
Tipu
Re: Report path
figured it out , thank you
> cd C:\SVNViews\AutomationProject\TestSuite\bin\Debug\
> TestSuite.exe /rc:SmokeTest /rf:C:\Users\..\Desktop\Report\SmokeTest\%S_%Y%M%D_%T.html
> cd C:\SVNViews\AutomationProject\TestSuite\bin\Debug\
> TestSuite.exe /rc:SmokeTest /rf:C:\Users\..\Desktop\Report\SmokeTest\%S_%Y%M%D_%T.html
Tipu
- Support Team
- Site Admin
- Posts: 12167
- Joined: Fri Jul 07, 2006 4:30 pm
- Location: Graz, Austria