02
MODULE 02 / 08
AI-AUGMENTED QA PATH
S E C T I O N 02

Bug Reports That Developers Respect.

A bad bug report is the fastest way to damage your reputation on a dev team. A great one is the fastest way to build it.

Here's the exact structure AI can build for you, every time, including on the bug you can't quite put into words yet.

The five components of a great bug report.

01

Clear, specific title

Not "Button broken" but "Submit button on checkout unresponsive after invalid card number."

02

Steps to reproduce

Exactly what a developer needs to do to see it themselves.

03

Expected behavior

What should happen.

04

Actual behavior

What actually happens.

05

Environment

Browser, OS, device, app version.

You already know this structure. What AI changes is how fast you turn a rough, informal description into a report that hits all five, every time.

Try It Yourself
Basic Bug Report
You are a senior QA engineer helping me write a bug report.

I'll describe a bug informally. Turn it into a professional
report with five sections:
  1. Title: clear, specific, scannable
  2. Steps to Reproduce: numbered, exact, no assumptions
  3. Expected Behavior    4. Actual Behavior
  5. Environment: browser, OS, device, version

If anything is unclear, ASK before writing. Don't invent details.

Rough description: {your description here}
Environment: {Chrome 122 · macOS 14 · staging 1.4.2}

Notice the instruction to ask before writing. That's what keeps AI from politely inventing steps you never actually gave it.

Not every bug is a P0. Know the difference.

P0
Broken now: production down, data loss, security hole
P1
Major flow broken: no workaround, blocks release
P2
Real bug, has a workaround: fix this sprint
P3
Cosmetic or edge-case: backlog it

When a bug isn't clear-cut, ask AI to argue both sides: "Make the case this is a P1, then make the case it's a P2." Reading both arguments is often faster than deciding cold.

When you can't quite describe it yet.

Use AI as a rubber duck.

Sometimes you've found something strange and you're not sure how to describe it, let alone whether it's a bug. Explain what you're seeing to AI in whatever messy words come out first. The act of explaining, and the follow-up questions AI asks back, usually gets you to a clear description faster than staring at the screen would.

FAIL

"Checkout is broken sometimes. Please fix."

PASS

"Checkout: submit button unresponsive after entering an invalid card number. Repro: enter 4000-0000-0000-0002, click Submit. Expected: inline error. Actual: button greys out, no error, no request sent. Chrome 122, macOS 14, staging 1.4.2."

CHALLENGE 02

Turn a complaint into a report.

Imagine a user files a ticket that says, in full: "The search sometimes shows old results." No screenshots, no steps, no version, nothing else. Run the Basic Bug Report prompt against it, let AI ask you the clarifying questions it needs, and produce a full five-component report. Then assign it a P0-P3 priority and write one sentence defending your call.

Save your output. That's your completion proof for this module.
What You Learned: Module 2

The five components, in brief:

  • Title: one line naming the symptom and where it happens
  • Repro steps: exact clicks and inputs, numbered, a stranger could follow
  • Expected: what should have happened
  • Actual: what happened instead
  • Environment: browser, OS, and build version

Knowing that list isn't the hard part. The real failure mode is letting AI fill gaps in your description with plausible-sounding invented steps. That's why the prompt tells AI to ask before writing, never guess.

Severity: when a P1 versus P2 call feels close, make AI argue both sides before you file, not after. It forces the ambiguity into the open instead of letting you decide quietly in your head and move on.

Rubber-duck: you don't need a clear description before you start explaining something strange. Explaining it badly, out loud or in a chat window, is usually how you arrive at a clear description in the first place.

Check yourself: pull up a bug report you filed recently. Could a developer reproduce it without asking you a single follow-up question? If not, which of the five components was thin or missing, and would AI have caught that gap if you'd told it to ask before writing?

Go deeper

This module is the free preview.

Guide 2 (The Manual Tester's AI Toolkit) has 29 copy-paste prompts across bug reports, test cases, test data, test plans, exploratory testing, and more. No coding required, ever.

See the full AI Toolkit →

The five-component bug report structure

A working bug report prompt, plus the P0-P3 severity scale

The rubber-duck technique for bugs you can't describe yet

Up Next: Module 03

Test Case Design & Test Data.

  • Getting a comprehensive first draft of test cases in 15 minutes
  • Pushing AI past the happy path for real edge cases
  • Realistic test data vs. adversarial, boundary-breaking data
  • Why "Test User 1" is hiding bugs from you