ContributionsMost RecentMost LikesSolutionsRe: OnLogError Eventhandler always fires before OnTimeout For now I skipped the Runner.Stop in the OnLogError in case of a Timeout. Let's see how it work. Thanks Robert! Re: OnLogError Eventhandler always fires before OnTimeout Robert, thanks for the answer. I am fine if the OnLogError raises the error, but in case of the timeout it runs into the OnLogError, does the Runner.Stop(true), but the test item appears green with status success. I would expect that the status would be Error in that case. Any idea why this is the case? OnLogError Eventhandler always fires before OnTimeout I have two Eventhandler, one for timeout and the other one for Errors. For some reason I can't get into the Timeout Eventhandler as the OnLogError always fires in case of timeout and for some reason in that case no Error is set and the Script appears passed(green). This are the two Event handler procedures in delphiscript: 1. OnLogError: procedure umgebungSetzenbeiFehler (Sender;LogParams); begin Log.Message('Eventhandler Stop: Testfall wegen Fehler abgebrochen'); Runner.Stop(true); end; 2. OnTimeout: procedure GeneralEvents_OnTimeout(Sender; Params); begin Log. message('Der Test ist wegen Timeout abgebrochen'); Runner.Stop(true); end; If I remove the Runner.Stop(true) from the OnLogError Eventhandler I get into the Timeout. The problem is that I need the Runner.Stop(true) to stop the test item in case of an error. Is there any solution for this? I think in case of a timeout the OnLogError event shouldn't fire. Solvedcommand line: exportLog option without visualizer Images? Hi, I am lookig for a command line Option to export the log without the visualizer Images. The only Option from the command line I find is this which exports the images as well: TestComplete.exe "C:\My Projects\MySuite.pjs" /run /p:MyProj /exportLog:"C:\TestLogs\Log.html" Or is the only way to do this to write a script at the end of the test suite that uses this command? Log.SaveResultsAs(FileName, LogFormat, ExportVisualizerImages, LogScope) FileName [in] Required String LogFormat [in] Optional Integer Default value: 0 (XML format) ExportVisualizerImages [in] Optional Boolean Default value: True LogScope [in] Optional Integer Default value: 0 (full test log) Result Boolean Regards, JBO