Describes how to use the Loop step

Description

Control flow statement that allows steps to be executed repeatedly based on a given boolean condition. This step allows other steps to be dropped in. So this step allows to have nested steps inside.

Category

Control

Inputs

Label Type Required Default Visibility Description

Condition type

choice

yes

Expression

Always

Type of condition to be checked. Possible values are `Expression`and `Script`.

Expression record

record

Condition type is Expression

Condition type is Expression

The record instance to be used to check condition

Expression condition

condition

Condition type is Expression

Expression record has been defined

Condition type is Expression

Expression record has been defined

The condition to be evaluated as true.

Script condition

condition

Condition type is Script

Condition type is Script

The script condition to be evaluated as true.

Outputs

No configuration is needed.

Sample

While Sample

The flow starts, the while step logs as long as a specified condition is true and then the execution finished with the end step.

Back to top