@fixture.boto3
Feature: Create DNA account

  Scenario: Go to "Create new user" page
    Given I authenticated as manager
    When I visit the accounts page
    And  I follow the link containing "New user"
    Then I should see the account creation page

  Scenario: Save new user
    Given I authenticated as manager
    When I visit the account creation page
    And Submit the following user details
      | field               | value                  |
      | given_name          | Adalyn                 |
      | family_name         | Adkins                 |
      | email               | test-user@sonymusic.com |
    Then I should be redirected to products page for created account
