Remove Text

Purpose: Deletes existing text from an input field using simulated backspace actions.

Note: Before removing the text, you’ll need to create a step that focuses the cursor on the input field where the text you want to remove is located.

Syntax:

1. tapOn.id: "target input field" 
2. removeText: "text inside the input field"

Example: To clear an input field before typing new text:

1. tapOn.id: "email.input.id" 
2. removeText: "[email protected]"

Last updated