Converting Report files

Ranorex Studio, Spy, Recorder, and Driver.
cld2403
Posts: 6
Joined: Thu Mar 10, 2011 9:50 am

Converting Report files

Post by cld2403 » Thu Mar 10, 2011 9:55 am

Hello,

is it possible to save the Report files not as .rxlog but as xml or html?

thanks in advance
regards

User avatar
Support Team
Site Admin
Site Admin
Posts: 12145
Joined: Fri Jul 07, 2006 4:30 pm
Location: Houston, Texas, USA
Contact:

Re: Converting Report files

Post by Support Team » Thu Mar 10, 2011 12:32 pm

Hi,

If you want to have the report file as a xml file, just rename it to *.xml. That's all you have to do.

Regards,
Peter
Ranorex Team

User avatar
Ciege
Posts: 1336
Joined: Thu Oct 16, 2008 6:46 pm
Location: Arizona, USA

Re: Converting Report files

Post by Ciege » Thu Mar 10, 2011 3:46 pm

And from within code you can just set up the log to use XML by using the Report.Setup method:

Code: Select all

Report.Setup(ReportLevel.Debug, "MyLogFile.XML", true);
If this or any response has helped you, please reply to the thread stating that it worked so other people with a similar issue will know how you fixed your issue!

Ciege...

cld2403
Posts: 6
Joined: Thu Mar 10, 2011 9:50 am

Re: Converting Report files

Post by cld2403 » Fri Mar 11, 2011 9:13 am

hey thanks for the answer
worked without any problems
thanks