Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion packages/playwright-core/src/tools/backend/context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ export type ContextConfig = {
};
outputDir?: string;
outputMaxSize?: number;
outputMode?: 'file' | 'stdout';
saveSession?: boolean;
secrets?: Record<string, string>;
snapshot?: {
Expand Down
1 change: 0 additions & 1 deletion packages/playwright-core/src/tools/mcp/program.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ export function decorateMCPCommand(command: Command) {
.option('--no-sandbox', 'disable the sandbox for all process types that are normally sandboxed.')
.option('--output-dir <path>', 'path to the directory for output files.')
.option('--output-max-size <bytes>', 'Threshold for evicting old output files, in bytes.', numberParser)
.option('--output-mode <mode>', 'whether to save snapshots, console messages, network logs to a file or to the standard output. Can be "file" or "stdout". Default is "stdout".', enumParser.bind(null, '--output-mode', ['file', 'stdout']))
.option('--port <port>', 'port to listen on for SSE transport.')
.option('--proxy-bypass <bypass>', 'comma-separated domains to bypass proxy, for example ".com,chromium.org,.domain.com"')
.option('--proxy-server <proxy>', 'specify proxy server, for example "http://myproxy:3128" or "socks5://myproxy:8080"')
Expand Down
1 change: 0 additions & 1 deletion packages/playwright-core/src/tools/trace/traceSnapshot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,6 @@ async function runCommandOnSnapshot(server: { url: string, stop: () => Promise<v

const backend = new BrowserBackend({
snapshot: { mode: 'full' },
outputMode: 'file',
skillMode: true,
}, context, browserTools);
await backend.initialize({ cwd: process.cwd(), clientName: 'playwright-cli' });
Expand Down
Loading