Skip to main content

typeKeys

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

Fields

FieldTypeDescriptionDefault
idstringOptional. ID of the step.Generated UUID
descriptionstringOptional. Description of the step.
actionstringRequired. The action to perform.
keysOne of
- string
- array of strings
Required. String of keys to enter.
delaynumberOptional. Delay in milliseconds between each key press. Only valid during a recording.100

Examples

{
"action": "typeKeys",
"keys": "kittens"
}
{
"action": "typeKeys",
"keys": [
"$ENTER$"
]
}
{
"action": "typeKeys",
"keys": [
"kittens",
"$ENTER$"
],
"delay": 500
}