Bird
0
0

Analyze this acceptance test scenario:

medium📝 Debug Q6 of 15
Testing Fundamentals - Testing Types and Levels
Analyze this acceptance test scenario:
Given the user is on the registration page
When the user submits the form with all required fields filled
Then the registration confirmation message is NOT displayed

What is the main issue with this scenario?
AThe 'Given' step is incorrect; user should start on the homepage
BThe scenario lacks a 'When' step describing user action
CThe expected outcome contradicts the action; confirmation should be displayed
DThe test scenario is missing a 'Then' step
Step-by-Step Solution
Solution:
  1. Step 1: Review scenario steps

    User submits a valid registration form.
  2. Step 2: Check expected outcome

    It states confirmation message is NOT displayed, which contradicts expected behavior.
  3. Final Answer:

    The expected outcome contradicts the action; confirmation should be displayed -> Option C
  4. Quick Check:

    Valid submission should show confirmation [OK]
Quick Trick: Valid form submission must show confirmation [OK]
Common Mistakes:
  • Ignoring logical consistency between action and expected result
  • Assuming missing steps without checking scenario
  • Confusing page navigation with expected outcomes

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Testing Fundamentals Quizzes