Skip to content

Commit 0bd3717

Browse files
authored
chore: fix the cli export, bump screencast resolution (#39272)
1 parent 424f2e6 commit 0bd3717

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/playwright-core/src/server/devtoolsController.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ class DevToolsConnection implements Transport, DevToolsChannel {
254254
eventsHelper.addEventListener(page, Page.Events.ScreencastFrame, frame => this._writeFrame(frame.buffer, frame.width, frame.height))
255255
);
256256

257-
await page.screencast.startScreencast(this, { width: 800, height: 600, quality: 90 });
257+
await page.screencast.startScreencast(this, { width: 1280, height: 800, quality: 90 });
258258
}
259259

260260
private _deselectPage() {

packages/playwright/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"./lib/mcp/program": "./lib/mcp/program.js",
2727
"./lib/mcp/sdk/bundle": "./lib/mcp/sdk/bundle.js",
2828
"./lib/mcp/sdk/exports": "./lib/mcp/sdk/exports.js",
29-
"./lib/mcp/terminal/program": "./lib/mcp/terminal/program.js",
29+
"./lib/cli/client/program": "./lib/cli/client/program.js",
3030
"./lib/program": "./lib/program.js",
3131
"./lib/reporters/base": "./lib/reporters/base.js",
3232
"./lib/reporters/list": "./lib/reporters/list.js",

0 commit comments

Comments
 (0)