Agentic exploratory QA testing for web applications
Project description
QA Agent
Automated exploratory QA testing for web applications — powered by Playwright and, optionally, LLMs (Claude or GPT-4o).
Point QA Agent at a URL and it explores your application like a real user: clicking buttons, filling forms, navigating with the keyboard, and checking for accessibility issues. Then it reports what it finds. No test scripts to write or maintain.
Need targeted tests? Pass plain-English instructions and an LLM generates custom Playwright steps that run alongside the standard suite.
Table of Contents
- Features
- Installation
- Quick Start
- Agentic Testing
- Web Interface & API
- CLI Reference
- Programmatic Usage
- Test Categories
- Output Formats
- CI/CD Integration
- Architecture
- Development
- Contributing
- Exit Codes
- Troubleshooting
- License
Features
| Category | What it does |
|---|---|
| Agentic testing | Give Claude or GPT-4o a bug report or feature spec; it generates custom Playwright test steps automatically |
| Two modes | focused tests only given URLs; explore crawls and discovers pages |
| Six test suites | Keyboard · mouse · forms · accessibility · error detection (on by default) + WCAG 2.1 AA compliance (opt-in) |
| Auth support | Username/password, cookies, Bearer tokens, custom headers |
| Four output formats | Console, Markdown, JSON, PDF |
| Screenshots & video | On-error or every-interaction screenshots; full session recording |
| Web UI | Dashboard for launching runs, live output, and browsing past sessions |
| CI/CD ready | Exit codes map to pass/fail; JSON output integrates with any pipeline |
Installation
Requires Python 3.10+. Check with
python --version.
pip install qa-agent # standard testing (Playwright only)
playwright install chromium # required — downloads browser binaries
Optional extras:
pip install "qa-agent[pdf]" # PDF reports (adds WeasyPrint)
pip install "qa-agent[web]" # web UI (adds Flask)
pip install "qa-agent[all]" # everything above
Agentic testing requires an API key for your chosen provider:
export ANTHROPIC_API_KEY=sk-ant-... # Anthropic (default)
export OPENAI_API_KEY=sk-... # OpenAI
playwright install chromiummust run once after every fresh install. See Troubleshooting if anything goes wrong.
Quick Start
# Test a single URL
qa-agent https://example.com
# Test multiple URLs
qa-agent https://example.com https://example.com/about
# Crawl and test discovered pages
qa-agent --mode explore --max-depth 2 https://example.com
# Generate reports in a custom directory
qa-agent --output json,markdown --output-dir ./reports https://example.com
# Run via module
python -m qa_agent https://example.com
Agentic Testing
Pass natural-language instructions and an LLM generates custom test steps that run alongside the standard suite. Supports Anthropic (Claude) and OpenAI (GPT-4o and others). No third-party AI packages are required — all API calls use Python's built-in urllib.
# From a bug report (Anthropic, default)
qa-agent --instructions "The login button does nothing when email is blank" \
https://example.com/login
# Using OpenAI instead
qa-agent --llm openai --instructions "The login button does nothing when email is blank" \
https://example.com/login
# From a feature spec
qa-agent --instructions "The 'Remember me' checkbox should be unchecked by default \
and persist the session across browser restarts." \
https://example.com/login
# From a file
qa-agent --instructions-file feature-spec.txt https://example.com
How it works
- The LLM receives your instructions and the target URL.
- It returns a structured plan: summary, focus areas, and custom Playwright test steps.
- The agent runs those steps on every tested page alongside the standard suites.
- Assertion failures become findings in the report with the severity the LLM assigned.
If the API call fails (or the key is missing), a warning is printed and the run continues with standard tests only.
Provider, model & caching
# Choose provider (default: anthropic)
qa-agent --llm anthropic --instructions "Test checkout" https://shop.example.com
qa-agent --llm openai --instructions "Test checkout" https://shop.example.com
# Override model (defaults: anthropic → claude-sonnet-4-6, openai → gpt-4o)
qa-agent --llm openai --ai-model gpt-4o-mini --instructions "Test checkout" https://shop.example.com
# Bypass the plan cache
qa-agent --no-cache --instructions "..." https://example.com
Plans are cached to ~/.qa_agent/cache/ (24-hour TTL). Pass --no-cache to force a fresh API call.
Web Interface & API
python -m qa_agent web # http://127.0.0.1:5000
qa-agent-web --host 0.0.0.0 --port 8080 # custom bind
- Configuration form with all CLI options
- Real-time streaming output (Server-Sent Events)
- Stop a running test mid-run
- Browse past sessions grouped by domain
- Session detail: findings table, severity breakdown, screenshot gallery, report downloads
No authentication — intended for local or internal use only.
Output is written to output/ by default. CLI sessions appear in the web UI automatically (JSON is always written).
REST API
The web server exposes a JSON API at http://127.0.0.1:5000 (default).
# Launch a test run
curl -X POST http://127.0.0.1:5000/api/run \
-H "Content-Type: application/json" \
-d '{"urls": ["https://example.com"]}'
# → {"job_id": "a1b2c3d4", "status": "running", "stream_url": "/api/stream/a1b2c3d4"}
# Stream live output (Server-Sent Events)
curl -N http://127.0.0.1:5000/api/stream/a1b2c3d4
# List past sessions
curl http://127.0.0.1:5000/api/sessions?limit=10
→ Full API reference — all endpoints, request body schema, and SSE event types.
CLI Reference
qa-agent --version
qa-agent --help
Modes
qa-agent --mode focused https://example.com # default — test only given URLs
qa-agent --mode explore https://example.com # crawl and test discovered pages
Exploration (explore mode)
| Flag | Default | Description |
|---|---|---|
--max-depth N |
3 |
Max link depth |
--max-pages N |
100 |
Max pages to test |
--max-interactions N |
50 |
Max interactions per page |
--allow-external |
off | Follow links to other domains |
--ignore PATTERN |
— | URL regex to skip (repeatable) |
Authentication
qa-agent --auth "user:pass@https://example.com/login" https://example.com/dashboard
qa-agent --auth-file auth.json https://example.com
qa-agent --cookies cookies.json https://example.com
qa-agent --header "Authorization: Bearer token123" https://example.com
auth.json schema
{
"username": "testuser",
"password": "testpass",
"auth_url": "https://example.com/login",
"username_selector": "input#email",
"password_selector": "input#password",
"submit_selector": "button[type=submit]"
}
Output
qa-agent --output console,markdown,json,pdf https://example.com
qa-agent --output-dir ./reports https://example.com
Default: console,markdown. JSON is always written regardless of --output (for web UI discovery). Output is organized as output/{domain}/{session_id}/qa_reports|screenshots|recordings.
PDF requires the
[pdf]extra. Falls back to Markdown if WeasyPrint is not installed.
Screenshots & recording
qa-agent --screenshots https://example.com # on errors
qa-agent --screenshots-all https://example.com # every interaction
qa-agent --full-page https://example.com # full-page captures
qa-agent --record https://example.com # session video
Browser
qa-agent --no-headless # visible browser window
qa-agent --viewport 1920x1080 # default: 1280x720
qa-agent --timeout 60000 # ms, default: 30000
Test suites
# Skip standard suites
qa-agent --skip-keyboard https://example.com
qa-agent --skip-mouse https://example.com
qa-agent --skip-forms https://example.com
qa-agent --skip-accessibility https://example.com
qa-agent --skip-errors https://example.com
# Enable opt-in suites
qa-agent --wcag-compliance https://example.com
Agentic testing flags
| Flag | Default | Description |
|---|---|---|
--llm {anthropic,openai} |
anthropic |
LLM provider for AI instructions |
--ai-model MODEL |
provider default | Model override (claude-sonnet-4-6 / gpt-4o) |
--no-cache |
off | Bypass the 24-hour plan cache |
Programmatic Usage
from qa_agent import QAAgent, TestConfig, TestMode, OutputFormat
from qa_agent.llm_client import LLMProvider
config = TestConfig(
urls=["https://example.com"],
mode=TestMode.EXPLORE,
output_formats=[OutputFormat.CONSOLE, OutputFormat.JSON],
max_depth=2,
max_pages=10,
instructions="Verify the password reset flow.", # optional
llm_provider=LLMProvider.OPENAI, # optional, default: LLMProvider.ANTHROPIC
ai_model="gpt-4o-mini", # optional, default: None (uses provider default)
)
agent = QAAgent(config)
session = agent.run()
print(f"Pages tested: {len(session.pages_tested)}")
print(f"Total findings: {session.total_findings}")
for finding in session.get_all_findings():
print(f" [{finding.severity.value.upper()}] {finding.title}")
Test Categories
Six built-in suites cover keyboard navigation, mouse interaction, form handling, accessibility (WCAG), runtime error detection, and an opt-in WCAG 2.1 AA compliance audit. Five run by default; enable the sixth with --wcag-compliance.
→ Detailed test-by-test reference
Output Formats
Console
JSON
{
"meta": {
"session_id": "a1b2c3d4",
"start_time": "2024-01-15T10:30:00",
"duration_seconds": 45.2
},
"summary": {
"pages_tested": 5,
"total_findings": 12,
"findings_by_severity": { "high": 2, "medium": 5, "low": 5 }
},
"findings": [...]
}
Severity levels
| Level | Meaning |
|---|---|
CRITICAL |
Security issues, data loss |
HIGH |
Major usability blockers |
MEDIUM |
UX problems, accessibility issues |
LOW |
Minor improvements, best practices |
INFO |
Informational observations |
CI/CD Integration
# GitHub Actions example
- name: Run QA Tests
env:
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} # or OPENAI_API_KEY
run: |
pip install qa-agent
playwright install chromium
qa-agent --output json --output-dir ./qa-results https://staging.example.com
- name: Upload Results
uses: actions/upload-artifact@v4
with:
name: qa-results
path: ./qa-results/
Exits with code 1 when critical or high severity issues are found, failing the CI step automatically. See Exit Codes.
Omit
--instructions/--instructions-fileand the API key env vars if you only need standard tests.
Architecture
qa_agent/
├── cli.py # CLI entry point
├── agent.py # Core orchestrator
├── config.py # Configuration dataclasses
├── models.py # Finding, PageAnalysis, TestSession, TestPlan
├── llm_client.py # Anthropic & OpenAI clients via stdlib urllib
├── ai_planner.py # LLM-powered test plan generation
├── plan_cache.py # Filesystem cache for test plans
├── testers/
│ ├── base.py # BaseTester abstract class
│ ├── keyboard.py # Keyboard navigation
│ ├── mouse.py # Mouse interaction
│ ├── forms.py # Form handling
│ ├── accessibility.py # WCAG accessibility
│ ├── wcag_compliance.py # WCAG 2.1 AA compliance (opt-in)
│ ├── errors.py # Console & network errors
│ └── custom.py # AI-generated test steps
├── reporters/
│ ├── console.py # Colored terminal output
│ ├── markdown.py # Markdown report
│ ├── json_reporter.py # JSON report
│ └── pdf.py # PDF report (requires weasyprint)
└── web/
├── server.py # Flask app with SSE streaming
├── templates/ # Jinja2 templates
└── static/ # CSS and JavaScript
→ Extending QA Agent — adding custom testers
Development
git clone https://github.com/billrichards/qa-agent.git
cd qa-agent
pip install -e ".[dev,web,ai]"
playwright install chromium
# Unit tests (no browser needed)
pytest -v -m "not integration and not network"
# Integration tests (real Playwright)
pytest -v -m integration --no-cov
# Lint & type check
ruff check .
mypy qa_agent
CI runs unit tests across Python 3.10–3.12 on Ubuntu, macOS, and Windows. Integration tests run on Ubuntu with Playwright. See .github/workflows/test.yml.
Contributing
- Fork the repository
- Create a feature branch (
git checkout -b my-feature) - Make your changes and add tests
- Run
pytest -v -m "not integration and not network" - Open a pull request against
main
Code style: Ruff + Black, line length 100.
Exit Codes
| Code | Meaning |
|---|---|
0 |
All tests passed (no critical/high findings) |
1 |
Critical or high severity issues found |
2 |
Error running tests |
130 |
Interrupted (Ctrl+C) |
Troubleshooting
Playwright browser not found
playwright install chromium
Must run once after every fresh install. Easy to forget in CI.
Web UI not working
pip install "qa-agent[web]"
Required for qa-agent-web and python -m qa_agent web.
PDF reports missing
pip install "qa-agent[pdf]"
Falls back to Markdown silently if WeasyPrint is absent.
Agentic testing skipped
No extra packages are needed — LLM calls use Python's built-in urllib. You only need a valid API key for your chosen provider:
export ANTHROPIC_API_KEY=sk-ant-... # for --llm anthropic (default)
export OPENAI_API_KEY=sk-... # for --llm openai
If the key is missing or the API call fails, qa-agent prints a warning and continues with standard tests.
Python version too old
Requires 3.10+. Check with python --version.
License
MIT — Copyright (c) 2026 Bill Richards. See LICENSE.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file qa_agent-0.2.0.tar.gz.
File metadata
- Download URL: qa_agent-0.2.0.tar.gz
- Upload date:
- Size: 153.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
540f7d05cee052b95cca8ab368199d2478bb9cc6b45abf8c28e675aaf6cd2e86
|
|
| MD5 |
602519e5d865c44338547783906187f1
|
|
| BLAKE2b-256 |
f733d8fe0bd30b5d12c0b737726e3240c6c532a8825607e5d9857dead151f0c5
|
Provenance
The following attestation bundles were made for qa_agent-0.2.0.tar.gz:
Publisher:
release.yml on billrichards/qa-agent
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
qa_agent-0.2.0.tar.gz -
Subject digest:
540f7d05cee052b95cca8ab368199d2478bb9cc6b45abf8c28e675aaf6cd2e86 - Sigstore transparency entry: 1291114315
- Sigstore integration time:
-
Permalink:
billrichards/qa-agent@df750e9347d70de26d1bbc6265284e1e57279853 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/billrichards
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@df750e9347d70de26d1bbc6265284e1e57279853 -
Trigger Event:
push
-
Statement type:
File details
Details for the file qa_agent-0.2.0-py3-none-any.whl.
File metadata
- Download URL: qa_agent-0.2.0-py3-none-any.whl
- Upload date:
- Size: 173.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e9b5c98d97f3f91b6bd6b988694996526d78b90c7c988e68f012f6239c9a3d6
|
|
| MD5 |
a8c4e52377ea539951f8e89ea4619118
|
|
| BLAKE2b-256 |
9308cd2a87d1acd3d947f84a371f532425c2cc757c1d129ece61db9e5025e8a6
|
Provenance
The following attestation bundles were made for qa_agent-0.2.0-py3-none-any.whl:
Publisher:
release.yml on billrichards/qa-agent
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
qa_agent-0.2.0-py3-none-any.whl -
Subject digest:
3e9b5c98d97f3f91b6bd6b988694996526d78b90c7c988e68f012f6239c9a3d6 - Sigstore transparency entry: 1291114439
- Sigstore integration time:
-
Permalink:
billrichards/qa-agent@df750e9347d70de26d1bbc6265284e1e57279853 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/billrichards
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@df750e9347d70de26d1bbc6265284e1e57279853 -
Trigger Event:
push
-
Statement type: