mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 17:10:53 +00:00
19 lines
No EOL
506 B
Gherkin
19 lines
No EOL
506 B
Gherkin
@users @oauth
|
|
Feature: Sign in to the store via OAuth
|
|
In order to view my orders list
|
|
As a visitor with an OAuth account
|
|
I need to be able to log in to the store
|
|
|
|
Background:
|
|
Given I am not logged in
|
|
And I am on the store homepage
|
|
|
|
Scenario Outline: Get to the OAuth login page
|
|
When I follow "Login"
|
|
Then I should see the connect with "<oauth>" button
|
|
|
|
Examples:
|
|
| oauth |
|
|
| Amazon |
|
|
| Facebook |
|
|
| Google | |