16 lines
523 B
Gherkin
16 lines
523 B
Gherkin
Feature: Login
|
|
|
|
Scenario: Login with valid credentials
|
|
Given I am on the login page
|
|
Then I should see "PerAuset"
|
|
And I should see "Sign in to your account"
|
|
When I fill in "Email" with "admin@perauset.org"
|
|
And I fill in "Password" with "test"
|
|
And I click "Sign in"
|
|
Then I should see heading "Dashboard"
|
|
And the sidebar should show "Dashboard"
|
|
|
|
Scenario: Login page pre-fills demo credentials
|
|
Given I am on the login page
|
|
Then the "Email" field should contain "admin@perauset.org"
|