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: Decision table testing, State transition testing
Survey: your testing experience
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 experience level group says 'select one' but uses checkboxes — multiple options can be selected. Should use
type="radio". - The tools group says 'select all that apply' but uses radio buttons — only one can be selected. Should use
type="checkbox". - The newsletter checkbox is pre-checked. Pre-checked marketing consent is a dark pattern and may violate NZ privacy and spam laws.
- Both the newsletter and partner offers boxes are pre-checked — users may submit consent they didn't actively give.
- Both newsletter checkboxes use
name="newsletter"— when the form submits, only one value will be sent, losing the distinction between them.
Input type bugs: 'select one' = radio, 'select all that apply' = checkbox. Pre-checked consent is a dark pattern — always default to unchecked for marketing.