Forum Discussion
Hassan_Ballan
Champion Level 3
2 days agoMake sure you follow this documentation note:
IMPORTANT: start and stop recording from within your test. The extension cannot use the recorder instance started outside TestComplete (or outside TestExecute). Also, it is very important to stop the recorder when the testing is over. The extension cannot start recording if you have a working recorder instance in the system. In this case, you have to close the recorder process (or processes) manually.
Also It is a good idea to check if the recorder is running before calling VideoRecorder.Start("High") and VideoRecorder.Stop().
function GeneralEvents_OnStopTest(Sender)
{
if (VideoRecorder.IsRecording()) // Check if the recorder is working
VideoRecorder.Stop();
}
👍 Found it helpful? Click Like
✅ Issue resolved? Click Mark as Solution