lr.continue_on_error
Specifies an error handling method.
JavaScript
function lr.continue_on_error( value )
VBScript
Sub lr.continue_on_error( value )
Example: lr.continue_on_error | Runtime Functions |
Arguments
Name | Comments |
---|---|
value | One of the Error Continuation Options. |
The lr.continue_on_error function specifies how to handle errors. You can choose to continue running if an error occurs, or to abort the run execution.
Normally, you specify how the test run component handles errors during script execution using the General section in VuGen's Runtime Settings dialog. By default, the script exits when an error occurs. To continue script execution even when errors occur, select the Continue on Error
check box in VuGen's Runtime Settings.
However, you can control error handling for a specific segment of the script, by inserting the lr.continue_on_error function before and after the desired segment (see the example for details).
In addition to the lr.continue_on_error statements, you can use Error Severity Levels to control error handling for database operation errors.
Return Values
No value returned.Parameterization
Standard parameterization is not available for this function.