pressKey
Simulate keyboard key presses in browser automation workflows. Specify the key (e.g., 'Enter', 'Escape') to execute actions like form submissions or navigation, enhancing interaction efficiency.
Instructions
Press a key on the keyboard
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes | Key to press (e.g., 'Enter', 'Escape', 'ArrowDown', etc.) |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"description": "Key to press (e.g., 'Enter', 'Escape', 'ArrowDown', etc.)",
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}