Q1.1. Writing imperative scenarios
# 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