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
Submit a product review
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 counter reads '100 / 60 characters used' on page load — the count is wrong (field is empty) and exceeds the max, which is contradictory.
- The review textarea label says 'max 500 chars' but the textarea has no
maxlengthattribute — the limit isn't enforced. - The label says 'max 30 chars' but
maxlength="50"— the attribute doesn't match the stated limit. - The textarea has
minlength="20"but there is no live feedback as the user types — the minimum is only discovered on failed submit, not during input. - The counter div is hard-coded HTML — it won't update as the user types without JavaScript. It's misleading as a static element.
Character limit bugs: check maxlength/minlength attributes match label text, that counters are accurate, and that limits are actually enforced.