chore: mark v0.0.50 (#1244)

This commit is contained in:
Pavel Feldman
2025-12-05 13:24:54 -08:00
committed by GitHub
parent c85ee1a6ec
commit ff9544db83
8 changed files with 75 additions and 16 deletions

View File

@@ -610,6 +610,13 @@ npx @playwright/mcp@latest --config path/to/config.json
*/
outputDir?: string;
console?: {
/**
* The level of console messages to return. Each level includes the messages of more severe levels. Defaults to "info".
*/
level?: 'error' | 'warning' | 'info' | 'debug';
},
network?: {
/**
* List of origins to allow the browser to request. Default is to allow all. Origins matching both `allowedOrigins` and `blockedOrigins` will be blocked.
@@ -643,6 +650,13 @@ npx @playwright/mcp@latest --config path/to/config.json
* Whether to send image responses to the client. Can be "allow", "omit", or "auto". Defaults to "auto", which sends images if the client can display them.
*/
imageResponses?: 'allow' | 'omit';
snapshot?: {
/**
* When taking snapshots for responses, specifies the mode to use.
*/
mode?: 'incremental' | 'full' | 'none';
}
}
```