Bird
0
0

A tester wrote this acceptance test scenario:

medium📝 Debug Q14 of 15
Testing Fundamentals - Testing Types and Levels
A tester wrote this acceptance test scenario:
Given the user is on the homepage
When the user clicks the 'Submit' button
Then the form should be submitted

But during testing, clicking 'Submit' does nothing. What is the most likely cause?
AThe form submission is successful but not visible
BThe 'Submit' button locator is incorrect or missing
CThe user is not on the homepage
DThe acceptance test scenario is invalid syntax
Step-by-Step Solution
Solution:
  1. Step 1: Understand the test failure symptom

    Clicking 'Submit' does nothing, so the button action is not triggered.
  2. Step 2: Identify common causes for no action on click

    Incorrect or missing locator means the test cannot find the button to click, causing no action.
  3. Final Answer:

    The 'Submit' button locator is incorrect or missing -> Option B
  4. Quick Check:

    Button not found = no click action [OK]
Quick Trick: No action on click? Check button locator first [OK]
Common Mistakes:
  • Assuming form submitted but invisible
  • Ignoring locator issues
  • Blaming test syntax instead of element identification

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Testing Fundamentals Quizzes