19 lines
394 B
JSON
19 lines
394 B
JSON
{
|
|
"name": "chrome_handle_dialog",
|
|
"description": "Handle JavaScript dialogs (alert/confirm/prompt) via CDP",
|
|
"parameters": {
|
|
"type": "object",
|
|
"properties": {
|
|
"action": {
|
|
"type": "string",
|
|
"description": "accept | dismiss"
|
|
},
|
|
"promptText": {
|
|
"type": "string",
|
|
"description": "Optional prompt text when accepting a prompt"
|
|
}
|
|
},
|
|
"required": ["action"]
|
|
}
|
|
}
|