Variables and logic

Use conditions to control workflow branches in AutoTapper

Conditions help AutoTapper decide whether to continue, skip, or branch based on page state, extracted values, or variable content.

Variables and logic

Use conditions to control workflow branches in AutoTapper

Conditions help AutoTapper decide whether to continue, skip, or branch based on page state, extracted values, or variable content.

Why conditions are useful

Conditions stop your workflow from acting blindly. They let AutoTapper react when a website does not show the expected data, button, or state.

Good use cases

  • Only continue if a status field matches a value.
  • Skip a branch when a variable is empty.
  • Prevent a destructive click unless the page is in the right state.

Keep conditions simple

Prefer small, readable checks over deeply nested logic. If a workflow feels hard to explain, split it into smaller branches or child flows.