ワンクリックで
e2e-testing
Playwright E2E test patterns for SPA market pages
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Playwright E2E test patterns for SPA market pages
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Debug frontend vanilla JS issues - console errors, rendering bugs, SPA navigation, WebSocket
Automates the process of setting up the first admin user or adding new admins via the bootstrap endpoint. Includes a Python script for easy execution.
Push to remote and wait for CI to pass. If CI fails, read logs, fix bugs, and re-push. Repeat until green.
Use when building or debugging LangGraph multi-agent systems - eval-first execution, task decomposition, model routing by complexity, and cost discipline
Use when AI agent modifies API routes or backend logic - catch systematic blind spots where the same model writes and reviews code
Use when making or recording significant architectural decisions - capture context, alternatives, and rationale as structured ADRs
| name | e2e-testing |
| description | Playwright E2E test patterns for SPA market pages |
pw_test/ # Playwright test scripts (standalone)
test_market_ui_smoke.py # Market page smoke tests
test_frontend_interaction_smoke.py # Full UI interaction tests
tests/e2e/ # pytest wrappers
test_market_ui_smoke.py # Pytest entry for market tests
test_frontend_interaction_smoke.py
# Run all E2E
.venv\Scripts\python.exe -m pytest tests/e2e/ --no-cov -v
# Run standalone (no pytest)
.venv\Scripts\python.exe pw_test/test_market_ui_smoke.py
web/ directory on port 8768/8769page.route("**/*", handler)add_init_script() (user, WebSocket mock, localStorage)wait_for_function() for dynamic contentwait_for_timeout(2000) as fallback (not as primary wait)page.evaluate() to call JS functions directlypython -m playwright install chromiumpowershell -Command for running tests