Delay
The Delay action allows you to introduce a wait period before the next action in a sequence is executed. This is useful for pacing user interactions, creating animations, or waiting for transitions before continuing with subsequent steps.
Use Cases
Pause briefly before showing a toast or navigating to a new page.
Add a delay between multiple chained actions.
Allow time for a visual element to complete its animation before triggering another action.
Properties
durationInMs
(Required) The duration of the delay in milliseconds. For example, 2000
will introduce a 2-second delay.
Default Behavior
By default:
The delay duration is set to 2000 milliseconds (2 seconds).
The next action in the sequence will execute only after this delay completes.
No UI is shown during the delay.
How to Use
Insert the Delay action between other actions in an action flow.
Set the
durationInMs
value to the desired delay time.Continue adding actions after the delay to define what should happen next.
Last updated