13 lines
520 B
Gherkin
13 lines
520 B
Gherkin
Feature: Sign up
|
||
Background:
|
||
Given I visit "/users/sign_up"
|
||
|
||
Scenario:
|
||
When I fill form with the following data:
|
||
| key | value |
|
||
| Email | user@example.com |
|
||
| Пароль | q1w2e3r4t5y6 |
|
||
| Подтверждение пароля | q1w2e3r4t5y6 |
|
||
And I click the form button "Регистрация"
|
||
Then I am at "/"
|
||
And I see CSS "h1" with text "Либертарианская партия России"
|