Q1.1. Writing imperative scenarios
Scenario questions on 1. Writing imperative scenarios check whether you can turn Cucumber BDD knowledge into action inside a real team. Panels want a diagnosis, a first step, a validation plan, and a rollback — in that order.
# BAD
Given I am on the login page
When I type "admin@example.com" into the email field
And I type "Sup3rSecret!" into the password field
And I click the "Sign in" button
Then I should see the dashboard page
# GOOD
When I login as "admin"
Then I should be on the dashboard- Follow diagnose → contain → fix → prevent when walking through the 1. Writing imperative scenarios scenario. Skipping "prevent" is the most common miss.
- Be ready to whiteboard the 1. Writing imperative scenarios snippet live — panels often ask you to type it, not describe it.
Discussion
Ask a question, share your experience, or correct us. Be kind — real people are reading.