Skip to the content.

wfa.executeWait

Purpose

This actiontype waits (sleeps) for a while and then ends successfully.

Use Cases

Fields

Parameter Description Type Mandatory Encrypted
wait Number of seconds to wait number N N

Example 1

  - number: 1
    type: "wfa.executeWait"
    name: "Example1"
    description: "Wait 10 seconds"
    component: ""
    condition: ""
    iteration: ""
    errorExpected: "N"
    errorStop: "N"
    parameters:
    - name: "wait"
      value : "10"

Example 2

  - number: 2
    type: "wfa.executeWait"
    name: "Example2"
    description: "Wait a random amount of time: between 5 and 20 seconds"
    component: ""
    condition: ""
    iteration: ""
    errorExpected: "N"
    errorStop: "N"
    parameters:
    - name: "wait"
      value : "{{*number.between(5,20)}}"