Skip to content

Type Anything action: TYPE

The Type Anything action is used to input data into a specified field or container, such as a text box, input field, or other form elements. It automates the process of entering values into web forms or application fields. This action can handle both static (hardcoded) and dynamic values.

Examples of usage:

  • Example 1: Type Anything action with Static Value: Enter “John Doe” into the specified Name field.

Steps to configure:

  1. Select Type Anything from the Action drop-down menu.
  2. In the Screen Name field, enter the specific screen or page name where the action is taking place.
  3. In the Element Key field, specify the Locator where the data should be entered. This could be a text box, etc.
  4. In the Parameters section, enter the value you want to input.
  5. Click Save to add the step.

Note: While the steps for adding an Action are identical in both views, the display of the steps changes:

Tabular View
Card View

Note: Ensure that the Screen Name and Element Key are already defined before using this action.

Expected Outcome on Execution: The text “QA” is successfully entered into the First Name field on the HuLoop Page.

  • Example 2: Type Anything Command with Local Variable

Steps to configure:

  1. Select Type Anything from the Action drop-down menu.
  2. In the Screen Name field, specify the screen where the element is located.
  3. In the Element Key field, specify the Locator where the data should be entered. This could be a text box, etc.
  4. In the Parameters section, provide the name of the variable where the value you want to input should be stored.
  5. Click Save.

Note: While the steps for adding an Action are identical in both views, the display of the steps changes:

Adding Type Anything Action in Tabular View
Adding Type Anything Action in Tabular View

Note: Ensure that the Screen Name, Element Key, and Local Variable are already defined before using this action.

Expected Outcome on Execution: The First Name field will display the value stored in the ${firstname} variable.
For example, if ${firstname} = “Alice”, the field will display “Alice”.

Back To Top