Forum Discussion
- AlexeyK
Alumni
Chris,
Several approaches are possible:
* You can export results to xml files and then parse these files to get information on the needed log messages. See Exporting Test Results.
* You can write script code that will retrieve data from the test log. See Scripting Access to the Test Log Contents.
* Also, you can try creating an event handler for the OnLogError message and save the error messages to a file within this event handler. To learn how to create the handler, see Handling Events. For code samples that save data to a file - Working With Files From Scripts.
- chris_reynoldsOccasional ContributorThanks Alex, the onLogError handler was what I was looking for.