An open API service indexing awesome lists of open source software.

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

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
```