Skip to content

Wait For Specified Time Action: WAIT

The Wait For Specified Time action is used to pause the execution of a process for a specified time. This action allows you to add a delay so that elements or events have enough time to load or process before the next step is executed.

The wait time can be provided as either:

  1. Standard Keywords: Predefined wait times that are configurable in the project settings:
    • wait_veryshort: Very short wait time (default: 1500 ms)
    • wait_short: Short wait time (default: 3000 ms)
    • wait_medium: Medium wait time (default: 6000 ms)
    • wait_long: Long wait time (default: 10000 ms)
    • wait_verylong: Very long wait time (default: 15000 ms)
  2. Milliseconds: A specific wait time in milliseconds (e.g., 5000 for 5 seconds).
Note: All times are in milliseconds, where 1 second = 1000 milliseconds.

Steps to configure:

  1. Select WAIT from the Action drop-down menu.
  2. Leave Screen Name blank.
  3. In the Element Key field, provide either a standard keyword (wait_veryshort, wait_short, etc.) or a specific wait time in milliseconds (e.g., 5000 for 5 seconds).
  4. Leave Parameters box blank.
  5. Click Save.
Note: While the steps for adding an action are identical in both views, the display of the steps differs:
Adding Wait For Specified Time command in List View
Adding Wait For Specified Time Action in List View
Adding Wait For Specified Time command in Grid View
Adding Wait For Specified Time Action in Grid View

Expected Output on execution: The system pauses execution for 6 seconds.

Note: The predefined wait times can be modified. To do so, follow these steps:

Modifying Predefined Wait Times

  1. Open the automation you are working on.
  2. Click Settings as shown:

v7_WO_click_settings

  1. You will land on the Settings page. Click Custom Settings.

v7_WO_click_custom_settings

  1. In the Custom Settings section, locate the parameter you want to modify under Setting Name.
  2. Find the wait time you wish to change (e.g., wait_long).
  3. Click the edit edit-icon icon next to the parameter to make the value editable.

v7_WO_click_edit

  1. You will get a pop-up to define the new value for the selected parameter.

v7_WO_popup_define_new_value

  1. Under Setting Value, input the new time in milliseconds for the selected keyword.

For example, change wait_long from 10000 ms to 12000 ms if you want to increase the wait time.

v7_WO_popup_setting_value

  1. After making the changes, click Save to apply the new value.

These custom settings ensure that the wait times match the requirements of your test environment. It’s advisable to standardize wait times across projects for consistency.

Last updated: Sep 16, 2025
Back To Top