Add SPA session validation and buglist, update migration docs

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2025-12-03 21:28:08 +00:00
parent 9be3dfc14e
commit cff287e870
24169 changed files with 10223 additions and 7120 deletions

4
node_modules/playwright/lib/mcp/browser/tools/tabs.js generated vendored Normal file → Executable file
View File

@@ -49,14 +49,14 @@ const browserTabs = (0, import_tool.defineTool)({
}
case "close": {
await context.closeTab(params.index);
response.setIncludeSnapshot();
response.setIncludeSnapshot("full");
return;
}
case "select": {
if (params.index === void 0)
throw new Error("Tab index is required");
await context.selectTab(params.index);
response.setIncludeSnapshot();
response.setIncludeSnapshot("full");
return;
}
}