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, Equivalence partitioning
Schedule a callback
Choose a date and time for our team to call you.
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 preferred date input has no
minattribute, so users can select dates in the past. - The helper text says 'No weekends' but there is no
min/maxor JavaScript blocking weekend selection. - The backup date field uses
type="text"with a DD/MM/YYYY placeholder — inconsistent with the primary date picker's native format, and no validation on the text input. - The DOB field has
min="2000-01-01", which blocks anyone born before the year 2000 from entering their date of birth. - The '18 or over' rule is not enforced by a dynamic max date. Setting
minto a fixed year like 2000 will break as time passes.
Date picker bugs: check that min/max attributes match the written rules, that past dates are blocked where required, and that the input type matches the expected format.