You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Automatically detects when browsers are not installed
- Runs 'npx playwright install <browser>' automatically on first use
- Handles browser installation for chromium, firefox, and webkit
- Provides clear error messages if auto-installation fails
- Updates README with browser installation information
- No breaking changes - fully backward compatible
Fixes issue where users get 'Executable doesn't exist' error on first run.
Users no longer need to manually run 'npx playwright install' before using the server.
After installation, the ExecuteAutomation Playwright MCP server will be available for use with your GitHub Copilot agent in VS Code.
118
118
119
+
## Browser Installation
120
+
121
+
### Automatic Installation (Recommended)
122
+
123
+
The Playwright MCP Server **automatically installs browser binaries** when you first use it. When the server detects that a browser is missing, it will:
124
+
125
+
1. Automatically download and install the required browser (Chromium, Firefox, or WebKit)
126
+
2. Display installation progress in the console
127
+
3. Retry your request once installation completes
128
+
129
+
**No manual setup required!** Just start using the server, and it handles browser installation for you.
130
+
131
+
### Manual Installation (Optional)
132
+
133
+
If you prefer to install browsers manually or encounter any issues with automatic installation:
0 commit comments