browser_key_press
Simulate keyboard key presses during browser automation to interact with web elements, submit forms, or navigate interfaces programmatically.
Instructions
Press a key on the keyboard
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes | Key to press (e.g., 'Enter', 'Tab', 'a', etc.) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"key": {
"description": "Key to press (e.g., 'Enter', 'Tab', 'a', etc.)",
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}