Getting Started with Aurora
Aurora is a desktop application for generating production-ready Playwright tests. This guide gets you from installation to your first generated test file.
System requirements
| Platform | Minimum version |
|---|---|
| Windows | 10 (64-bit) |
| macOS | 12 Monterey |
| Linux | Ubuntu 22.04 / Fedora 38 |
Installation
Windows
- Download
Aurora-Setup-x.x.x.exefrom your purchase confirmation email. - Run the installer and follow the prompts.
- Aurora will appear in your Start Menu.
macOS
- Download
Aurora-x.x.x.dmg. - Open the DMG, drag Aurora to your Applications folder.
- On first launch, macOS may prompt you to confirm — click Open in System Settings → Privacy & Security.
Linux
- Download
Aurora-x.x.x.AppImage. - Make it executable:
chmod +x Aurora-*.AppImage - Run it:
./Aurora-*.AppImage
Activating your license
See the Activation Guide for step-by-step instructions.
Your first test
- Create a new project — File → New Project → choose your output folder.
- Set the base URL — enter the URL of the application you want to test.
- Start recording — click the Record button. Aurora opens a browser window.
- Interact with your app — click buttons, fill forms, navigate pages. Aurora records every action.
- Stop recording — click Stop. Aurora generates a Playwright test file.
- Review and export — edit the generated test in the built-in editor, then File → Export.
Running your tests
The exported file is a standard Playwright test. Run it with:
npx playwright test your-test.spec.ts
No additional configuration is needed — Aurora generates tests that work with a default Playwright installation.
Next steps
- Troubleshooting — if something isn't working as expected.
- License Policy — seat limits, upgrades, and refunds.