31 / 71 · 11 Manual Testing Fundamentals · Session Reports← prev⊞ allnext →☰ Read as one page
4.6Integrating Exploratory Findings into the Test Process
Exploratory testing does not exist in isolation. Its findings should feed into other testing activities:
From Exploration to Automation
When an exploratory session discovers a bug:
- File the bug report
- After the fix, write an automated regression test for that specific scenario
- The automated test ensures the bug never returns
- The exploratory session moves on to discover new issues
This creates a virtuous cycle: exploration finds new bugs, automation prevents recurrence, exploration continues to find new things.
From Exploration to Test Cases
When exploration reveals an important scenario that was not in the scripted test suite:
- Document the scenario as a formal test case
- Add it to the regression suite
- Update the charter list to reflect that the area now has scripted coverage
From Questions to Requirements
When exploration raises questions about expected behavior:
- Document the question in the session report
- Bring it to the product owner or developer
- The answer becomes a documented requirement
- Write a test case for the clarified requirement