How can exploratory testing be combined with automated testing to improve overall test coverage?
AUse automation for repetitive checks and exploratory testing for new or complex scenarios
BReplace all exploratory tests with automation scripts
CRun exploratory tests only after automation fails
DAvoid automation to keep exploratory testing pure
Step-by-Step Solution
Solution:
Step 1: Understand strengths of automation and exploratory testing
Automation is good for repetitive tasks; exploratory testing finds unexpected issues.
Step 2: Identify best combination approach
Use automation for repetitive checks and exploratory testing for new or complex scenarios correctly uses automation for routine checks and exploratory for complex cases.
Final Answer:
Use automation for repetitive checks and exploratory testing for new or complex scenarios -> Option A
Quick Check:
Combine automation + exploratory for best coverage [OK]