---
name: Symfony E2E Testing
slug: symfony-e2e-testing
category: Quality
description: Symfony E2E Testing writes end-to-end tests with Panther or Playwright for browser automation. Use it for regression-safe TDD, bug reproduction, and stable CI coverage.
github: "https://github.com/dev-toolings/superpowers-symfony/tree/main/skills/e2e-panther-playwright"
language: TypeScript
stars: 208
forks: 20
install: "npx degit https://github.com/dev-toolings/superpowers-symfony/tree/main/skills/e2e-panther-playwright ~/.claude/skills/e2e-panther-playwright"
installs_to: ~/.claude/skills/e2e-panther-playwright
source_path: skills/e2e-panther-playwright/SKILL.md
collection_size: 23
category_size: 1557
collection_url: "https://dirskills.com/collections/dev-toolings/superpowers-symfony"
added: 2026-09-04T05:27:07.894Z
last_synced: 2026-09-04T05:27:07.894Z
canonical_url: "https://dirskills.com/skills/symfony-e2e-testing"
---

# Symfony E2E Testing

Symfony E2E Testing writes end-to-end tests with Panther or Playwright for browser automation. Use it for regression-safe TDD, bug reproduction, and stable CI coverage.

**Install:**

```bash
npx degit https://github.com/dev-toolings/superpowers-symfony/tree/main/skills/e2e-panther-playwright ~/.claude/skills/e2e-panther-playwright
```

## README

# E2e Panther Playwright (Symfony)

## Use when
- Building regression-safe behavior with TDD/functional/e2e tests.
- Converting bug reports into executable failing tests.

## Default workflow
1. Write failing test for target behavior and one boundary case.
2. Implement minimal code to pass.
3. Refactor while preserving green suite.
4. Broaden coverage for invalid/unauthorized/not-found paths.

## Guardrails
- Prefer deterministic fixtures/builders.
- Assert observable behavior, not internal implementation.
- Keep tests isolated and stable in CI.

## Progressive disclosure
- Use this file for execution posture and risk controls.
- Open references when deep implementation details are needed.

## Output contract
- RED/GREEN/REFACTOR trace.
- Test files changed and executed commands.
- Coverage and confidence notes.

## References
- `reference.md`
- `docs/complexity-tiers.md`
