Ismail_BHIHI
4 years agoNew Contributor
on Error GOto label
The 3 Error Handling States in Visual Basic are :
- On Error Goto 0: works in test complete
- On Error Resume: works in test complete
- On Error Goto [label]: Doesn't work in test complete ??????
My question is :
Why On Error Goto [label] doesn't work in test complete?
Thanks
Ismail
TestComplete uses VBScript (not Visual Basic or VBA). VBScript only supports "On Error Resume Next" and "On Error Goto 0". See https://ss64.com/vb/onerror.html for details.