Implement conditional branching
Implement if condition
- from [Select Action], select [Function > Conditional branch].
- enter the condition in [Conditions for branching]. (It is possible to refer to it by
{{ }}
.) - click [Add action] in [Execute action] to create the action.
- Implement the action.
- Select a branch action and test it by clicking [Test branches].
- Check if the return value of the branch action is returned according to the condition.
Implement else if condition
- after creating the branching action, add a branch from [Add else if].
- enter the condition in [Conditions for branching]. (You can also refer to it by
{{ }}
.) - click [Add action] in [Execute action] to create the action.
- Implement the action.
- Select a branch action and test it by clicking [ Test branches].
- Check if the return value of the branch action is returned according to the condition.
Implement else condition
- after creating the branching action, check the [else] checkbox.
- click [Add action] in [Execute action] to create the action.
- Implement the action.
- Select the branch action and test it by clicking [ Test branches].
- Check if the return value of the action implemented in [if] and [else if] is returned if it does not match.