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.

  1. RequirementA user signs in with email and password.
  2. AI analyses the requirementIdentifies the happy path and what can go wrong.
  3. Generate test casesValid login, wrong password, locked account, slow network.
  4. Generate Playwright testReal selectors, real assertions, no placeholders.
  5. Execute the testRuns headless against the application.
  6. Test failsThe locked-account case times out waiting for an error message.
  7. AI analyses the failureThe message renders after an animation the test does not wait for.
  8. FixWaits for the element to be visible instead of a fixed delay.
  9. Test passesAll four cases green.
  10. 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.