Skip to main content

type

Type keys. To type special keys, begin and end the string with $ and use the special key's keyword. For example, to type the Escape key, enter $ESCAPE$.

Fields

FieldTypeDescriptionDefault
keysOne of
- string
- array of string
Optional. Sequence of keys to enter.
inputDelaynumberOptional. Delay in milliseconds between each key press during a recording100
selectorstringOptional. Selector for the element to type into. If not specified, the typing occurs in the active element.

Examples

"kittens"
[
"$ENTER$"
]
[
"kittens",
"$ENTER$"
]
{
"keys": "kittens"
}
{
"keys": [
"$ENTER$"
]
}
{
"keys": [
"kittens",
"$ENTER$"
],
"inputDelay": 500
}