Page 1 of 1

Testsuit: no additional information in Report

Posted: Mon Jan 28, 2013 2:54 pm
by skder
Hey,

I have a problem: when i run a code module the report works perfect and I get a lot of information out of it.

But as soon as I run the modules in a testsuit - no information (besids the green spot, and the executed modules names) is shown. It just says: "Warning occurred: For additional information see the report of the individual modules, please." But there is no additional information, when I click the modules...

My settings of the testsuits:
Auto Save Interval: 30
Capture Tracing Scree: True
Checked: True
Compress Report File: False
Enable Report: True
Place ScreenshotsInFolder:True
ReportFile:%S_%YM%D_%T.rxlog (Default name)
ReportLevel: Debug
ShowProgressDialog: True

My testcase have Report Leve: Inherit

I'm working with: Ranorex Studio Version 4.0.1.21107

Does anyone know what setting I have to change, so I get more information when running a testsuit?

Thank you in advance :)

Re: Testsuit: no additional information in Report

Posted: Tue Jan 29, 2013 4:01 pm
by skder
I read this in the User Guide: "Each executed test case and all its child modules can be analyzed in depth by expanding a particular test case."

Do I understand this right, that it should be possible to see more details, when clicking on the module...?

Re: Testsuit: no additional information in Report

Posted: Tue Jan 29, 2013 6:23 pm
by Support Team
Hello,

Do you have any report messages (using Report.Info e.g.) in your report?
Could you please post or send us your report in order to analyze it?

Regards,
Markus (T)

Re: Testsuit: no additional information in Report

Posted: Wed Jan 30, 2013 9:15 am
by skder
Hello,

Thanks for your reply :)

I tried to load the .xlog file, but I couldn't manage it :oops: ...

so i made a screenshot... in the User Code Module 1 is just the copy of the Code from the User Guide:

Code: Select all

void ITestModule.Run()
        {
            Mouse.DefaultMoveTime = 300;
            Keyboard.DefaultKeyPressTime = 100;
            Delay.SpeedFactor = 1.0;
            
            Ranorex.Report.CurrentReportLevel = Ranorex.ReportLevel.Parse("low;10");
            
            Ranorex.Report.Info("This is a Information");
            
            Ranorex.Report.Debug("This is a Debug Information");  
            Ranorex.Report.Info("This is a Information");  
  
			// Setting Parameter Category to specific value and report a warning and an error  
			Ranorex.Report.Warn("Specific Category","This is a Warning Information");  
			Ranorex.Report.Error("Specific Category", "This is an Error Information");  
  
			// Setting the Default Category  
			Ranorex.Report.DefaultCategory = "My new default category";  
  
			// Reporting information (success, failure) using the new default category  
			Ranorex.Report.Success("This is a success information");  
			Ranorex.Report.Failure("This is a failure Information");  

            
        }

Re: Testsuit: no additional information in Report

Posted: Wed Jan 30, 2013 1:05 pm
by Support Team
Hello,

It looks like there are security settings that could block your messages.
Could you please verify if the ‘IE Enhanced Security Configuration (ESC)’ settings is switched off?
Please take a look at the attached screenshot.

Regards,
Markus (T)

Re: Testsuit: no additional information in Report

Posted: Wed Jan 30, 2013 2:24 pm
by skder
It worked :)

Thank you very much :)
bye!

Re: Testsuit: no additional information in Report

Posted: Wed Jan 30, 2013 2:43 pm
by Support Team
Hello,

You are welcome :-)

Regards,
Markus (T)