Skip to content

Delay

Type: delay  ·  Package: Core Activities v1.0.0

Pause execution for the indicated time (in milliseconds) and then continue with the next activity. It serves to give a system time to react: for a page to finish loading, for an application to open a window, for a file to finish being written.

Upon reaching the activity, the flow stops exactly for the indicated milliseconds and then continues. Remember the equivalence: 1000 ms = 1 second.

ParameterEditorDescription
millisecondsnumberTiempo de espera en milisegundos. Ej: 1500 = 1,5 segundos.

Ninguno.

Wait half a second between two actions to avoid saturating a slow system:

Page Click selector = "#guardar"
Delay milliseconds = 500
Page Click selector = "#confirmar"
You want to wait…milliseconds
Medio segundo500
1 segundo1000
5 segundos5000
1 minuto60000
  • Retry — retry an unstable action instead of waiting blindly.
  • While — actively wait until a condition is met.