Type the specified text into an element.

Inputs

Value
string
required

The text you want to type into the input field.

Element to type into
string
required

Description of the element you want to interact with.

Configs

Replace content
string
default:"Only inputs and textareas"

Choose when the typed content should replace the existing content.

  • Only inputs and textareas: Only replace content in input and textarea elements.
  • Never: Never replace existing content.
  • Always: Always replace existing content, regardless of element type (useful custom contenteditable elements).
Press enter
boolean
default:false

Press the Enter key after typing the text.

Key press delay
number
default:0

Amount of milliseconds to wait after each key press. This is useful for triggering on-press event handlers such as autocomplete.

Disable stability checks
boolean
default:false

Do not wait for the element to be visible, stable and actionable before interacting. Useful for elements that are constantly animating or partially obscured.

Use CSS selector
boolean
default:false

Treat the element description as a CSS selector. This is not recommended for maintainability reasons but can be useful for dynamic pages.

Disable caching
boolean
default:false

Disable caching for this step. Useful for elements that should always be located dynamically, such as table rows, search results, or graph nodes that may be re-ordered.

Act within iframe
string

Specify an exact URL or a regex to match the URL of the iframe in which the element is located. The provided matcher must match exactly one iframe element on the page. To provide a custom regex, use the /<regex-here>/ format.