Back to home
This is a platform preview — the progress shown is an example.
AI Playground
Watch AI test a login flow
The same pipeline you will build in Module 5, run step by step.
Login test — end to end
Requirement in, working test and report out.
- RequirementA user signs in with email and password.
- AI analyses the requirementIdentifies the happy path and what can go wrong.
- Generate test casesValid login, wrong password, locked account, slow network.
- Generate Playwright testReal selectors, real assertions, no placeholders.
- Execute the testRuns headless against the application.
- Test failsThe locked-account case times out waiting for an error message.
- AI analyses the failureThe message renders after an animation the test does not wait for.
- FixWaits for the element to be visible instead of a fixed delay.
- Test passesAll four cases green.
- Generate reportResults, timings and a trace for anything that failed.
This is a scripted demonstration. In the full course you run this against your own application.