I currently have some YUI tests that I need to run in headless mode. Right now, these tests are executed by launching their corresponding TestFileName.html. As a result, the browser displays the test results with green and red icons along with messages indicating pass or fail status. However, this process renders the machine unusable as the browser's UI repeatedly appears and disappears.
To achieve headless execution, I attempted to run the tests using a WebBrowser control (from .NET) within memory. Although this approach prevents me from viewing the UI to determine test outcomes, I need to capture and store success/failure details and corresponding messages in a log file on the file system.
I am uncertain about how to proceed. Could someone please advise me on how to successfully execute YUI tests in headless mode while generating log files?
Thank you