The card below is the “product under test”. Use guided mode to see the bug list upfront, or blind mode to find them yourself first.
Techniques: Boundary value analysis, Error guessing
Contact us
We’ll get back to you within one business day.
Fixed version (reference)
This shows correct NZ phone validation — compare with the buggy form above.
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 (5)
- The email input has
value="notanemail"— an invalid default value that would fail format validation. - The pattern is
[0-9]{10}(no spaces allowed) but the placeholder shows '021 555 0123' (with spaces) — contradictory instructions. - NZ numbers like '021 555 0123' (11 chars with space) won't match a strict 10-digit no-space pattern.
- The alternative email field uses
type="text"— no format validation even though it's an email field. - The helper text says 'business email addresses only' but there is no pattern or validation blocking free email providers.
Format validation bugs: check that input type, pattern attribute, placeholder, and helper text all agree with each other.