23f9aa90e8
- .mcp.json - CAPABILITIES_TODO.md - demo_e2e/ Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
68 lines
1.8 KiB
JSON
68 lines
1.8 KiB
JSON
{
|
|
"name": "8 - Verificación post-acción: click oculto / type sin foco dan error (fix B)",
|
|
"verdict": "PASS",
|
|
"click_hidden_error": true,
|
|
"type_nofocus_error": true,
|
|
"steps": [
|
|
{
|
|
"tool": "tab_navigate",
|
|
"args": {
|
|
"port": 9333,
|
|
"url": "https://quotes.toscrape.com"
|
|
},
|
|
"ms": 112,
|
|
"is_error": false,
|
|
"response": "navigated to https://quotes.toscrape.com"
|
|
},
|
|
{
|
|
"tool": "page_wait_load",
|
|
"args": {
|
|
"port": 9333,
|
|
"timeout_ms": 12000
|
|
},
|
|
"ms": 212,
|
|
"is_error": false,
|
|
"response": "page loaded"
|
|
},
|
|
{
|
|
"tool": "page_eval_js",
|
|
"args": {
|
|
"port": 9333,
|
|
"expression": "var b=document.createElement('button');b.id='hidden_btn';b.textContent='x';b.style.display='none';document.body.appendChild(b);'injected'"
|
|
},
|
|
"ms": 2,
|
|
"is_error": false,
|
|
"response": "injected"
|
|
},
|
|
{
|
|
"tool": "dom_click",
|
|
"args": {
|
|
"port": 9333,
|
|
"selector": "#hidden_btn"
|
|
},
|
|
"ms": 2,
|
|
"is_error": true,
|
|
"response": "cdp click: elemento \"#hidden_btn\" existe pero no es visible/clickable (display:none, oculto, opacity 0 o tamaño 0)"
|
|
},
|
|
{
|
|
"tool": "page_eval_js",
|
|
"args": {
|
|
"port": 9333,
|
|
"expression": "if(document.activeElement){document.activeElement.blur();} document.body.focus(); 'blurred'"
|
|
},
|
|
"ms": 1,
|
|
"is_error": false,
|
|
"response": "blurred"
|
|
},
|
|
{
|
|
"tool": "dom_type",
|
|
"args": {
|
|
"port": 9333,
|
|
"text": "fantasma"
|
|
},
|
|
"ms": 1,
|
|
"is_error": true,
|
|
"response": "cdp type text: no hay campo de texto enfocado (activeElement: body); usa CdpClick sobre el input primero"
|
|
}
|
|
]
|
|
} |