Chapter 4.4 · Test Analysis and Design

Experience-Based Test Techniques

Black-box testing relies on requirements, and white-box testing relies on code. But what happens when requirements are vague, code is inaccessible, or you need to catch the weird edge-case bugs that logic and math missed? That's where the tester's own experience comes in.

~10 min read

The core ideas, explained

1

Error Guessing

Error Guessing is one of several Experience-based techniques, where the tester uses their past experience to anticipate where developers are most likely to make mistakes, then designs tests specifically to trigger those errors. A structured approach to this is called a Fault Attack, where the tester intentionally inputs known "bad" data to force a failure.

Example - The "null" attack

A tester evaluates a new user registration form. Knowing developers frequently forget to handle empty or null values in database queries, the tester bypasses the UI constraints and sends a direct API payload with "FirstName": null to see if the server crashes.

Example - Time zones and leap years

Testing a hotel booking application, the tester has seen booking apps fail on dates that don't exist every year. They specifically try to book a room for February 29th, or a booking that crosses a Daylight Saving Time change, anticipating a calculation error.

2

Exploratory Testing

Exploratory testing is dynamic and unscripted - it involves simultaneous learning, test design, and test execution. Instead of writing tests in advance, the tester explores the application and dynamically adjusts their strategy based on what they discover. To prevent it from becoming aimless wandering, it's usually structured using Session-Based Test Management (SBTM): a timebox (a strict, uninterrupted time limit, like 60 minutes) and a charter (a mission statement for the session, like "explore the checkout flow for payment-gateway security flaws"). It's best used when requirements are incomplete, time is severely limited, or as a final pass after formal testing is complete.

Example in practice

A new reporting dashboard drops on the last day of the sprint with zero documentation. The tester sets a 45-minute timebox, starts by clicking the export buttons (learning), notices the PDF export takes 10 seconds, then rapidly clicks it 5 times in a row to see if it overwhelms the server (test design and execution). The server crashes - a defect found.

3

Checklist-Based Testing

Checklist-Based Testing uses a high-level list of conditions, rules, or features to check. Unlike formal black-box test cases, a checklist does not provide step-by-step instructions or explicit expected results - it relies on the tester's experience to know how to check each item, ensuring consistency and broad coverage without the heavy maintenance burden of detailed test scripts.

Example - The UI/UX checklist

A company has a standard 10-point checklist for all new web pages (e.g., "Check spelling," "Verify branding colors," "Test on mobile view," "Check tab navigation"). Applying this to a new profile page, the checklist just says "check tab navigation" - it's up to the experienced tester to know they should press Tab to confirm the cursor moves logically between fields.

Example - The security checklist

Testing a new search bar, the tester pulls up the OWASP Top 10 security checklist. Item 1 is "Injection" - the tester uses their own knowledge to input SQL injection strings like `' OR 1=1;--` into the search bar.

Key points to remember

  • Complementary - experience-based techniques fill the gaps left by black-box and white-box testing; they don't replace them.
  • Coverage is subjective - you can't measure "100% intuition coverage," so it's tracked by time spent, areas explored, or checklist items covered instead.
  • High skill required - effectiveness is directly proportional to the tester's skill and domain knowledge; a junior tester finds fewer bugs than a veteran.
  • Exploratory = simultaneous - learning, designing, and executing happen at the exact same time.

Terminology

A few terms from this topic worth knowing precisely.

Experience-based testing

A test technique category that relies on the tester's own skills, intuition, and past knowledge - including historical defect data - to anticipate where a system is likely to break.

Error Guessing

An experience-based technique where the tester uses past experience to anticipate where developers are likely to make mistakes, then designs tests to trigger those specific flaws.

Fault Attack

A structured form of Error Guessing where the tester deliberately inputs known "bad" data - like nulls or malformed values - to force a predicted failure.

Exploratory Testing

A dynamic, unscripted technique where learning, test design, and test execution all happen simultaneously, as the tester adapts based on what they discover.

Session-Based Test Management (SBTM)

A way of structuring exploratory testing using a timebox (a strict time limit) and a charter (a mission statement for the session), so it doesn't become aimless wandering.

Checklist-Based Testing

An experience-based technique using a high-level list of conditions or features to check, without step-by-step instructions - the tester's experience fills in how to check each item.

Summary

Experience-based testing leverages human intuition and past knowledge. Error Guessing targets common developer mistakes. Exploratory Testing is a dynamic, timeboxed adventure of simultaneous learning and testing, guided by a charter. Checklist-Based Testing uses high-level guidelines to ensure consistency without rigid scripts. Because human behavior is unpredictable, these techniques are essential for finding defects that perfectly logical, math-based techniques miss.

ConceptOne-line memory hook
Error Guessing"I bet the developer forgot to handle..."
Fault AttacksIntentionally injecting bad data to force a predicted failure
Exploratory TestingSimultaneous learning, designing, and executing
Session-Based TestingExploratory testing controlled by a Charter and a strict Timebox
Checklist-Based TestingHigh-level reminders of what to test, but not how to test it

Check your understanding

20 questions, easy to hard - click an option to see if you got it right.