lr.continue_on_error
Specifies an error handling method.
C#
void lr.continue_on_error( int value );
VB.NET
Sub lr.continue_on_error( ByVal value As Integer )
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
You cannot use standard parameterization for any arguments in this function.