Merge pull request #405 from SmartManoj/update-readme

Add specific Playwright installation commands
This commit is contained in:
warmshao
2025-03-18 21:06:52 +08:00
committed by GitHub

View File

@@ -65,7 +65,13 @@ Install Python packages:
uv pip install -r requirements.txt
```
Install Playwright:
Install Browsers in Playwright:
You can install specific browsers by running:
```bash
playwright install --with-deps chromium
```
To install all browsers:
```bash
playwright install
```