So when developing tests and when running them I would like to be able to see the logging as it is happening. This simply is not possible with my current application because it runs maximized and the Ranorex script runs in the background.
I want to look into the capability of the script sending the logging information to an RSS feed or something similar so I can connect to the same system via a web page or RSS feed viewer and see what is going on while the test is running.
Has anyone done something like this? Any recommendation on how to go about implementing this?
Send logging to RSS feed or something similar
- Gunner1980
- Posts: 89
- Joined: Mon Apr 05, 2010 8:44 pm
- Location: Austin, Texas
Re: Send logging to RSS feed or something similar
We have built our own test controller/dashboard which logs the results to Quality Center and an Access database which is located on a shared drive. We can then access the results through QC or the Dashboard on another machine to get the latest results and logs as they are run. You could do something similar!
- Support Team
- Site Admin
- Posts: 12145
- Joined: Fri Jul 07, 2006 4:30 pm
- Location: Houston, Texas, USA
- Contact:
Re: Send logging to RSS feed or something similar
Hi Gunner,
I would suggest you the same a sdaly, but if you want to handle this by RSS Feeds, look to the following link http://www.computorcompanion.com/LPMArticle.asp?ID=194 . There shouldn't be a problem to read the rxlog file, because it is written in xml format.
Regards,
Peter
Ranorex Team
I would suggest you the same a sdaly, but if you want to handle this by RSS Feeds, look to the following link http://www.computorcompanion.com/LPMArticle.asp?ID=194 . There shouldn't be a problem to read the rxlog file, because it is written in xml format.
Regards,
Peter
Ranorex Team
Re: Send logging to RSS feed or something similar
An easy thing I do is use a text editor that has the auto update ability (I use textpad).
From my main desktop (not my Ranorex test machine) I use Windows File Explorer and point to the folder where the Ranorex log is generated (in my case it is named something like foo.xml.tmp) I open that temp file with textpad and as the file is updated (i.e. log info is written) textpad will update the file on my screen. Therefore I have created a simple remote result dashboard.
From my main desktop (not my Ranorex test machine) I use Windows File Explorer and point to the folder where the Ranorex log is generated (in my case it is named something like foo.xml.tmp) I open that temp file with textpad and as the file is updated (i.e. log info is written) textpad will update the file on my screen. Therefore I have created a simple remote result dashboard.
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...
Ciege...
- artur_gadomski
- Posts: 207
- Joined: Mon Jul 19, 2010 6:55 am
- Location: Copenhagen, Denmark
- Contact:
Re: Send logging to RSS feed or something similar
I have two screens, and move Console with logging to one while maximized application is running on another.
- Gunner1980
- Posts: 89
- Joined: Mon Apr 05, 2010 8:44 pm
- Location: Austin, Texas
Re: Send logging to RSS feed or something similar
Thanks for all the suggestions I'll try some of these out and let you know which one worked best for me.