lr.exit

Exits from the script, action, or iteration.

C#

void lr.exit( int continuation_option, int exit_status );

VB.NET

Sub lr.exit( ByVal continuation_option As Integer, ByVal exit_status As Integer )
Example: lr.exitRuntime Functions

Arguments

NameComments
continuation_optionThe Script Continuation Options specifies how the script continues after the call to lr.exit
exit_status The Script Exit Status of the scenario group as a result of calling lr_exit

The lr.exit function allows you to exit from the script run during execution.

A transaction in which lr.exit is called does not appear in Controller in the Transaction Status box. It is ignored in the count of passed and failed transactions.

If lr.exit is called several times in the same script, whether in different actions or different iterations, it is the exit status of the last call that determines the status of the Vuser group running the script. The Controller Scenario Groups Status box displays the status. It is the column in which the group appears after the run stops.

Return Values

No value returned.

Parameterization

You cannot use standard parameterization for any arguments in this function.