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 f2c8499 commit ffa9231Copy full SHA for ffa9231
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "asteroid-playwright-mcp",
3
- "version": "0.0.35-21",
+ "version": "0.0.35-23",
4
"description": "Playwright Tools for MCP",
5
"type": "module",
6
"private": false,
src/tab.ts
@@ -117,7 +117,8 @@ export class Tab extends EventEmitter<TabEventsInterface> {
117
outputFile: await this.context.outputFile(download.suggestedFilename())
118
};
119
this._downloads.push(entry);
120
- await download.saveAs(entry.outputFile);
+ // Downloads don't work via CDP, so we just mark it as finished
121
+ // await download.saveAs(entry.outputFile);
122
entry.finished = true;
123
}
124
0 commit comments