Skip to main content

type

Interaction

Types text into a focused element.

Parameters

Parameter Type Required Default Description
selector string Yes Element selector using type=value format
text string Yes Text to type character by character
delay number No 0 Delay between keystrokes in ms
clear boolean No false Clear existing content before typing
iframe string No CSS selector for iframe context
timeout number No 5000 Maximum wait time in milliseconds

Usage Example

RTILA X PROJECT JSON

    {
  "command": "type",
  "params": {
    "selector": "css=#username",
    "text": "alice.smith",
    "delay": 25,
    "clear": false,
    "iframe": "",
    "timeout": 5000
  }
}
  

Related Scenarios

Related Learning Articles

Was this helpful?