We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f75ea2f commit 3a5c98eCopy full SHA for 3a5c98e
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "asteroid-playwright-mcp",
3
- "version": "0.0.35-3",
+ "version": "0.0.35-4",
4
"description": "Playwright Tools for MCP",
5
"type": "module",
6
"private": false,
src/tools/tabs.ts
@@ -49,7 +49,7 @@ const browserTabs = defineTool({
49
return;
50
}
51
case 'select': {
52
- if (!params.index)
+ if (params.index === undefined)
53
throw new Error('Tab index is required');
54
await context.selectTab(params.index);
55
response.setIncludeSnapshot();
0 commit comments