playwright-excel
2
总安装量
2
周安装量
#63264
全站排名
安装命令
npx skills add https://github.com/rukkha1024/elderly-balance-assessment --skill playwright-excel
Agent 安装分布
opencode
2
gemini-cli
2
claude-code
2
github-copilot
2
windsurf
2
codex
2
Skill 文档
Playwright Excel Integration
Overview
Convert Playwright codegen scripts into Excel-driven automations with centralized config and required MCP validation.
Environment
- Use the
playwrightconda environment. - Before running any Python command, run:
conda run -n playwright python -c "import sys; print(sys.executable)" - Do not create or activate any venv or
.venv.
Inputs
- Playwright codegen script path
- Excel
.xlsxpath - Mapping lines:
"hardcoded_value" -> Excel[Sheet][FilterCol==FilterVal][DataCol] - Optional override:
PLAYWRIGHT_TARGET_SUBJECT
Workflow
- Analyze the Playwright script and the Excel structure (sheets, columns, sample rows).
- Detect hardcoded
.fill()values and confirm that each has a mapping; request clarification for mismatches. - Ensure dependencies in the
playwrightconda env (preferconda install -n playwright, fall back toconda run -n playwright pip install). - Create or update
config.yamlusing centralized control (paths, patterns, column definitions, constants, tunables, shared texts). - Modify the Playwright script:
- Add a config loader and an Excel loader (polars; see
references/excel-loading.md). - Replace hardcoded values with
data[...].
- Add a config loader and an Excel loader (polars; see
- Always run Playwright MCP validation; if MCP is not running, start it from this repo before continuing (see
references/mcp-validation.md). - When refactoring existing pipelines/logic, generate outputs and compare MD5 checksums with reference files (see
references/md5-validation.md). - Run the updated script with
conda run -n playwright python.
References
references/excel-loading.mdreferences/mcp-validation.mdreferences/md5-validation.mdreferences/examples.md