11 lines
455 B
Gherkin
11 lines
455 B
Gherkin
Feature: Sign in
|
||
Scenario:
|
||
Given a user with email "user@example.com" and password "q1w2e3r4t5y6"
|
||
When I visit "/users/sign_in"
|
||
And I fill form with the following data:
|
||
| key | value |
|
||
| Email | user@example.com |
|
||
| Пароль | q1w2e3r4t5y6 |
|
||
And I click the form button "Войти"
|
||
Then I am at "/"
|
||
And I see CSS "h1" with text "Либертарианская партия России"
|