Skip to main content

typeKeys

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

Note: The following action properties are mutually exclusive. You can only use one of these in a single step:

keys

FieldTypeDescriptionDefault
typeKeysstringNo description provided.
typeKeysarray of stringNo description provided.
keysstringRequired. Sequence of keys to enter.
keysarray of stringRequired. 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
}