Feature: Player Login
Description: As a returning player
I want to log in to my account
So that I can access the platform and play games
File name: login.feature
Relative path: auth/login.feature
Given
I am on the login page
00:00:00.789
When
I enter "player@test.com" as email
00:00:00.047
And
I enter "password" as password
00:00:00.016
And
I click the sign in button
00:00:00.059
Then
I should be redirected to the home page
00:00:00.861
Given
I am on the login page
00:00:00.430
When
I enter "wrong@test.com" as email
00:00:00.020
And
I enter "password" as password
00:00:00.018
And
I click the sign in button
00:00:00.039
Then
I should see a login error message
00:00:00.016
Given
I am on the login page
00:00:00.353
When
I enter "player@test.com" as email
00:00:00.011
And
I enter "wrongpassword" as password
00:00:00.012
And
I click the sign in button
00:00:00.040
Then
I should see a login error message
00:00:00.105