Skip to main content
Control keyboard input to type text, press keys, and execute key combinations for desktop automation.

Overview

Keyboard control enables:
  • Typing text into applications
  • Pressing individual keys
  • Executing key combinations (Ctrl+C, Alt+Tab, etc.)
  • Simulating keyboard shortcuts
Desktop automation requires a template with desktop support. Ensure your sandbox has desktop capabilities enabled.

Typing Text

Type text as if typed on a keyboard:

Pressing Keys

Press individual keys:

Key Combinations

Execute key combinations (modifier keys + main key):

Available Keys

Common key names:
  • Modifiers: 'ctrl', 'shift', 'alt', 'meta' (Command on macOS)
  • Function keys: 'F1' through 'F12'
  • Special keys: 'Return' (Enter), 'Escape', 'Tab', 'Backspace', 'Delete'
  • Arrow keys: 'Up', 'Down', 'Left', 'Right'
  • Letters and numbers: 'a', 'b', '1', '2', etc.

Typing Speed

Control typing speed with delay:

Complete Example

Automate a form filling workflow:

Common Shortcuts

Common keyboard shortcuts for automation:
  • Copy: Ctrl+C (or Cmd+C on macOS)
  • Paste: Ctrl+V (or Cmd+V on macOS)
  • Cut: Ctrl+X (or Cmd+X on macOS)
  • Select All: Ctrl+A (or Cmd+A on macOS)
  • Undo: Ctrl+Z (or Cmd+Z on macOS)
  • Redo: Ctrl+Y (or Cmd+Shift+Z on macOS)
  • Save: Ctrl+S (or Cmd+S on macOS)
  • Close Tab: Ctrl+W (or Cmd+W on macOS)
  • New Tab: Ctrl+T (or Cmd+T on macOS)

Next Steps