generated from Arquisoft/wiq_0
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
añadido otra vez el test e2e basicButtons
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
Feature: Basic Buttons | ||
|
||
Scenario: The user is not registered in the site | ||
Given An unregistered user | ||
When I fill the data in the form and press submit | ||
Then The user is logged | ||
|
||
Scenario: User checks game play history | ||
When I navigate to user section and press the history | ||
Then I should see a list of past games played | ||
|
||
Scenario: User checks ranking history | ||
When I navigate to the user section and press the ranking section | ||
Then I should see a list of users ranked by their scores | ||
|
||
Scenario: User switches to dark mode | ||
When I toggle the dark mode switch | ||
Then The interface should switch to dark mode | ||
|
||
Scenario: User switches to light mode | ||
When I toggle the light mode switch | ||
Then The interface should switch to light mode | ||
|
||
Scenario: User switches to english | ||
When I navigate to the settings section and press english from the language dropdown | ||
Then The interface should switch to english | ||
|
||
Scenario: User switches to spanish | ||
When I navigate to the settings section and press spanish from the language dropdown | ||
Then The interface should switch to spanish | ||
|
||
Scenario: User logout | ||
When I navigate to the user section and press logout | ||
Then The user should logout |