macaroni

insert

Description:
The insert executor is used to insert text into the application in focus.

Parent: execute, then, else

Value: string specifying the text to be inserted

# form
- insert: (string)

# example
- insert: |
    555 North Main St.
    Some City, OH

EXAMPLE:

variables:
  address: |
    555 S Main St
    Anywhere, OH 43311

commands:
- name: insert my address (using a variable)
  triggers:
  - insert my address
  execute:
  - insert: '{address}'

Additional information:

Status: ✅ IMPLEMENTED