The white card below is the “product under test”. Interact with every field, button, and dropdown. Use guided mode to see the bug list, or blind mode to log your own findings first.
Techniques: Form testing, Boundary value analysis
🥐 Aro Valley Bakehouse
Order fresh sourdough, pastries, and pies for pickup on Aro Street, Wellington.
Your findings
0 / 0 bugs foundTick each bug as you confirm it on the page above. Progress saves automatically.
Write down every bug you find. Be specific — where it is, what’s wrong, what it should be.
Planted bugs (6)
- The “Submit Order” button does nothing when clicked — no JavaScript event listener is attached
- The “Quantity” dropdown shows options 1–10 but selecting any value >5 resets to 1
- The “Pickup Time” field is a plain text input with no time validation — accepts “25:00” or any text
- The “Special Requests” textarea has a max length of 10 characters instead of a sensible limit like 200
- “Add to Favourites” shows “Added!” but does not actually save to localStorage — lost on refresh
- The “Phone” field uses type=“text” with no pattern validation, so it accepts letters instead of numbers
Interactive bugs hide behind clicks and keystrokes. Always test: submit actions, dropdown boundaries, validation rules, persistence, and input constraints.