Forum Discussion
anna_v
Staff
14 years agoHi Mike
Try to use the LogParams object within the OnLogError event handler:
var arr = new Array();
function GeneralEvents_OnLogError(Sender, LogParams)
{
arr.push(LogParams);
}
Then, you can create the OnStopTest event handler that will process the obtained results and send the email.
I hope this helps
Ann