pytest-bdd-example/features/auth/admin_login.feature

19 lines
387 B
Gherkin
Raw Normal View History

2013-06-06 05:15:27 +08:00
Scenario: Successful login
Given I'm an admin user
2013-06-07 05:22:49 +08:00
When I go to the admin login page
2013-06-06 05:15:27 +08:00
And I fill in the login credentials
And I post the form
Then I shouldn't see an error message
And I should see the Dashboard page
Scenario: Unsuccessful login
2013-06-07 05:22:49 +08:00
When I go to the admin login page
2013-06-06 05:15:27 +08:00
And I fill in wrong login credentials
And I post the form
Then I should see an error message