browser_key_press
Press keyboard keys during web browser automation to interact with web elements, submit forms, navigate interfaces, and perform keyboard shortcuts in automated testing workflows.
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)
{
"properties": {
"key": {
"description": "Key to press (e.g., 'Enter', 'Tab', 'a', etc.)",
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}