| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| playwright-mcp-extension-0.0.64.zip | 2026-02-06 | 88.3 kB | |
| README.md | 2026-02-06 | 1.4 kB | |
| v0.0.64 source code.tar.gz | 2026-02-06 | 110.7 kB | |
| v0.0.64 source code.zip | 2026-02-06 | 148.5 kB | |
| Totals: 4 Items | 348.9 kB | 0 | |
🕶️ Incognito by default
Browser profiles are now in-memory by default — every session starts clean with no leftover state.
Use --persistent to opt into a persistent profile, or --profile=<path> to specify a custom profile directory:
:::sh
> playwright-cli open example.com # incognito, clean slate
> playwright-cli open example.com --persistent # persistent profile
> playwright-cli open example.com --profile=./my-data # custom profile directory
🔀 Simplified session management
The --session flag has been replaced with the shorter -s=. Session lifecycle is simplified — there is no longer a "stopped" state; sessions are either running or gone.
:::sh
> playwright-cli -s=myapp open example.com
> playwright-cli -s=myapp click e5
> playwright-cli -s=myapp close
> playwright-cli -s=myapp delete-data
New session management commands replace the old session-* family:
:::sh
> playwright-cli list # list all sessions
> playwright-cli close-all # close all browsers
> playwright-cli kill-all # forcefully kill all browser processes
🏗️ Workspace-scoped daemon
Each workspace now gets its own daemon process, preventing cross-project interference and enabling direct daemon startup for faster, more reliable operation.