Skip to content

Files

Latest commit

7798dc7 · Mar 14, 2023

History

History
42 lines (31 loc) · 1.04 KB

conditions.md

File metadata and controls

42 lines (31 loc) · 1.04 KB

Conditions

{% hint style="warning" %} By design, Maestro discourages the usage of conditional statements unless absolutely necessary as they could easily ramp up the complexity of your tests. {% endhint %}

runFlow conditionally

- runFlow:
    when:
      visible: Some Text
    file: {reference to another yaml file}

{% content-ref url="nested-flows.md" %} nested-flows.md {% endcontent-ref %}

Conditions

Supported conditions include:

visible: { Element matcher }        # True if matching element is visible
notVisible: { Element matcher }     # True if matching element is not present
true: { Value }                     # True if given value is true or not empty

JavaScript

Usage of JavaScript conditions is possible via true condition:

- runFlow:
    when:
      true: ${MY_PARAMETER == 'Something'}
    file: subflow.yaml

{% content-ref url="javascript/" %} javascript {% endcontent-ref %}