How-to

Pause (waitForTimeout)

Pause (waitForTimeout)

A hard pause in milliseconds. Value is a number of ms. Use rarely: prefer waitForSelector or waitForURL.

Step model

action_namewaitForTimeout
GroupWait
TargetUnused
ValueRequired (duration_ms)
expected_valueUnused
TEST_ACCOUNTForbidden
Do not confuse withwaitForSelector, waitForURL

Target/Value facts match the source-of-truth catalog and Autotest step.

Prerequisites

  1. You know why you cannot wait for a selector or URL instead.

Steps

  1. Add a waitForTimeout step.
  2. In Value enter duration in milliseconds, for example 500.
  3. Source must be INLINE.
  4. Save.

The step is stored on the autotest. Next - neighbouring steps or autotest run creation.

Examples

Short animation pause

Fields in the UI:

FieldValue
action_namewaitForTimeout
Targetempty
Value300
value_source_typeINLINE

Step JSON fragment (copy-paste):

json
{
  "action_name": "waitForTimeout",
  "value_text": "300",
  "value_source_type": "INLINE"
}

Common mistakes

  • Do not use 5000–30000 ms instead of waiting for an element - the scenario becomes brittle and slow.
  • TEST_ACCOUNT is forbidden.

Screenshots

Screenshots of the step form for waitForTimeout will be added here in a later pass.

Version 1.0.0 · Last updated 2026-09-11

Did this page help?