1
0
Fork 0
This repository has been archived on 2023-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/features/desktop/staff_people_create.feature

25 lines
886 B
Gherkin
Raw Normal View History

2019-08-28 18:12:20 +00:00
Feature: Staff people create
Background:
Given I am signed in as superuser
Given I visit "/staff/people"
Given I click "Создать"
Scenario: with valid attributes
When I fill form with the following data:
| key | value |
| Фамилия | Иванов |
| Имя | Павел |
And I click the form button "Отправить"
Then I am at "/staff/people/\d+"
And I see text "Иванов"
And I see text "Павел"
Scenario: with invalid attributes:
When I fill form with the following data:
| key | value |
| Фамилия | Иванов |
And I click the form button "Отправить"
Then I am at "/staff/people"
And I see text "Пожалуйста, исправьте следующие ошибки"
And I see text "Имя не может быть пустым"