Generate, execute, and maintain end-to-end tests for web applications — from a single URL to full CI/CD integration.
Platform Documentation GitHub Action
QualityMax crawls your web application, understands its structure, and generates production-ready Playwright test suites. Tests run in the cloud or on your own infrastructure, with self-healing capabilities that keep them working as your app evolves.
- AI Test Generation — Point at a URL, get comprehensive E2E tests with assertions and page object models
- Playwright Execution — Run tests in cloud browsers or locally via our agent, with video recording and screenshots
- CI/CD Integration — GitHub Action that runs your test suite on every push or pull request
- Self-Healing Tests — AI detects and fixes broken selectors automatically when your UI changes
- Test Management — Organize test cases by project, track execution history, and manage test runs
| Repository | Description |
|---|---|
| qualitymax | Platform documentation and public issue tracker |
| qualitymax-github-action | GitHub Action for running QualityMax tests in CI/CD pipelines |
| qualitymax-demo-playground | Demo repository showing GitHub Action integration in practice |
| qamax-auth-cli | CLI tool for capturing auth sessions used during AI crawling |
# .github/workflows/e2e-tests.yml
name: E2E Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: Quality-Max/qualitymax-github-action@v1
with:
api-key: ${{ secrets.QUALITYMAX_API_KEY }}
project-name: my-projectVisit app.qamax.co to get started.
- Platform: app.qamax.co
- Documentation: qualitymax repo
- GitHub Action: Marketplace
