Forum Discussion
tlaford
14 years agoOccasional Contributor
This problem was reported to the SmartBear support team as Issue# M0096417. The solution for TestComplete 8.60 was provided via this patch: http://downloads.smartbear.com/support/415226a7-86a9-45d1-adae-eee4ff46a24b
In addition, the Timeout Event Handler should follow this general pattern:
Sub GeneralEvents_OnTimeout(Sender, Params)
Params.Break = True
' Determine the current task and terminate it
' kill application being tested if desired
' reboot slave
' do other stuff
end sub
This resolved our problem quite well.
In addition, the Timeout Event Handler should follow this general pattern:
Sub GeneralEvents_OnTimeout(Sender, Params)
Params.Break = True
' Determine the current task and terminate it
' kill application being tested if desired
' reboot slave
' do other stuff
end sub
This resolved our problem quite well.