Hiya,
Can you please tell me how to:
1. Tell Ranorex not to produce any report(s) files. i.e. Turn off the report file generation, writing of xsl file etc.
2. Tell Ranorex not to output warning messages to Console or Trace (if possible)
Thanks.
Options for Ranorex Reports
Re: Options for Ranorex Reports
1. If you don't want any reporting, you will need to code around it as Ranorex is designed to do reports. If you just don't want them displayed after a test run, Tools -> Options...General -> Ranorex Report Viewer...Uncheck "Open report after execution".
2. On your test suite, right click the top tree item (the root test suite) and in the menu mouse over "Report Level" and select the desired level from the list. Everything AT OR BELOW (in the menu) the selected level will be reported.
2. On your test suite, right click the top tree item (the root test suite) and in the menu mouse over "Report Level" and select the desired level from the list. Everything AT OR BELOW (in the menu) the selected level will be reported.
Shortcuts usually aren't...
Re: Options for Ranorex Reports
Hiya,
I meant really at API level rather than Ranorex Studio.
Cheers.
I meant really at API level rather than Ranorex Studio.
Cheers.
Re: Options for Ranorex Reports
The API is published at:
http://www.ranorex.com/Documentation/Ranorex/
http://www.ranorex.com/Documentation/Ranorex/
Code: Select all
Report.CurrentReportLevel = ReportLevel.Error;
Shortcuts usually aren't...