Your automated tests are green and you trust them, but they only ever check what you thought to check. A confusing label, a broken layout on a phone, a flow that technically works but feels wrong: a machine sails past all of it. This chapter gets you the human pass that catches what no assertion can.
8.8.1Automated tests miss the human bugs
A test only ever checks a case you thought of in advance. You wrote it, or your agent did, to confirm the thing you already pictured. It cannot flag the case that never crossed your mind.
It also never asks the question a person asks without trying: does this feel right? A form can submit, save, and pass every check while its button sits in a place no one would look. That whole class of bug, ugly, confusing, awkward, working but wrong, is human-only.
8.8.2Explore, don't just follow a script
Exploratory testing is poking at your app like a curious or careless user with no script in hand. You deliberately leave the path you designed and see what breaks.
The moves that find bugs are the ones a tidy user never makes:
- click things in the wrong order
- submit the empty form, then the same one twice
- hit the back button in the middle of a flow
- resize the window small, then tiny
- paste an essay into a field built for a name
Spend ten unhurried minutes doing the weird thing. That is where the bugs no test imagined are hiding.
8.8.3Keep a release checklist
Before every ship, walk one short list by hand, on a real device. Not the desktop browser shrunk narrow, an actual phone, because that is where layout and touch bugs live. The same list every time turns into muscle memory:
Keep it to what would embarrass you if it shipped broken. A list you actually finish beats a long one you skip.
8.8.4Write a bug report your agent can fix
When the human pass finds something, how you write it up decides whether the agent fixes it in one round or three. A vague "the signup is broken" forces the agent to guess and re-ask. A reproducible report, the exact steps plus what should happen and what did, gets it fixed on the first try.
Fill in the same four parts every time:
Hand your app to a senior QA engineer and let them build both artifacts around your specifics:
Do this now: paste the prompt, then walk your app's release checklist by hand on a real phone before your next ship.