https://github.com/akihokurino/claude-code-playwright
claude code playwright sample
https://github.com/akihokurino/claude-code-playwright
claude-code playwright
Last synced: about 1 month ago
JSON representation
claude code playwright sample
- Host: GitHub
- URL: https://github.com/akihokurino/claude-code-playwright
- Owner: akihokurino
- Created: 2025-09-09T07:08:17.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-09-10T04:17:45.000Z (10 months ago)
- Last Synced: 2025-10-07T20:55:49.633Z (9 months ago)
- Topics: claude-code, playwright
- Language: Dockerfile
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ClaudeCode Playwright
## Build docker
```
docker-compose build --no-cache
```
## Run docker
```
docker-compose up
docker-compose exec claude-code bash
```
## Install, Setup MCP
```
claude mcp add playwright npx @playwright/mcp@latest
claude mcp list
```
`claude-data/.claude.json`
```
{
...
"mcpServers": {
"playwright": {
"type": "stdio",
"command": "npx",
"args": [
"@playwright/mcp@latest",
"--config",
"/workspace/playwright-config.json"
],
"env": {}
}
}
...
}
```
## SQLite
```
sqlite3 data/app.db
```
## CSV Export
```
sqlite3 -header -csv data/app.db "SELECT * FROM toyota_search_results;" > output/toyota.csv
```