How to create a test case?

Every test step begins with an action. These actions are pre-built functions to mimic user interactions like clicking, typing, etc,

How to perform a click action?

  1. Choose the "Click" action.

  2. Select the element type like button, link, etc.

  3. Enter the element name (e.g., 'Login', 'Add Ticket').

Note: The element name should match exactly, and it is case-sensitive.

How to type in an input field?

  1. Choose the "Type in fields with" action.

  2. Select the input field by its "Placeholder" or "Label".

  3. Enter the placeholder or label value.

  4. Enter the value to be filled in the input field.

Note: You can also perform actions on elements using their "id" and "CSS class name".

Last updated