2022-08-10 10:57:21 +00:00
|
|
|
Feature: Status Desktop Settings Menu
|
|
|
|
|
|
|
|
As a user I want to login the app go to Settings and go through all settings menu
|
|
|
|
checking the result of each menu item
|
|
|
|
|
|
|
|
Background: Sign up and open settings section
|
|
|
|
Given A first time user lands on the status desktop and generates new key
|
2022-10-19 10:39:48 +00:00
|
|
|
When user signs up with username "tester123" and password "TesTEr16843/!@00"
|
2022-08-10 10:57:21 +00:00
|
|
|
Then the user lands on the signed in app
|
|
|
|
When the user opens app settings screen
|
|
|
|
|
2022-09-20 12:22:04 +00:00
|
|
|
@merge @mayfail
|
2022-08-10 10:57:21 +00:00
|
|
|
Scenario: The user quits the app
|
|
|
|
When the user clicks on Sign out and Quit
|
2022-08-16 16:35:10 +00:00
|
|
|
Then the app is closed
|
|
|
|
|
2022-09-20 12:22:04 +00:00
|
|
|
@merge @mayfail
|
2022-08-16 16:35:10 +00:00
|
|
|
Scenario: User can backup seed phrase
|
2022-10-21 07:17:48 +00:00
|
|
|
When the user activates wallet
|
|
|
|
And the user opens the wallet settings
|
2022-08-16 16:35:10 +00:00
|
|
|
And the user backs up the wallet seed phrase
|
2022-08-12 16:31:39 +00:00
|
|
|
Then the backup seed phrase indicator is not displayed
|
|
|
|
|
2022-09-20 12:22:04 +00:00
|
|
|
@merge
|
2022-08-24 09:51:20 +00:00
|
|
|
Scenario: The user can switch state to offline
|
|
|
|
When the users switches state to offline
|
2022-08-12 16:31:39 +00:00
|
|
|
Then the user appears offline
|
|
|
|
When the user restarts the app
|
2022-10-19 10:39:48 +00:00
|
|
|
And the user "tester123" logs in with password "TesTEr16843/!@00"
|
2022-08-12 16:31:39 +00:00
|
|
|
Then the user appears offline
|
|
|
|
|
2022-09-20 12:22:04 +00:00
|
|
|
@merge
|
2022-08-24 09:51:20 +00:00
|
|
|
Scenario: The user can switch state to online
|
|
|
|
When the users switches state to offline
|
2022-08-12 16:31:39 +00:00
|
|
|
And the user restarts the app
|
2022-10-19 10:39:48 +00:00
|
|
|
And the user "tester123" logs in with password "TesTEr16843/!@00"
|
2022-08-12 16:31:39 +00:00
|
|
|
Then the user appears offline
|
2022-08-24 09:51:20 +00:00
|
|
|
When the users switches state to online
|
2022-08-12 16:31:39 +00:00
|
|
|
Then the user appears online
|
|
|
|
When the user restarts the app
|
2022-10-19 10:39:48 +00:00
|
|
|
And the user "tester123" logs in with password "TesTEr16843/!@00"
|
2022-08-12 16:31:39 +00:00
|
|
|
Then the user appears online
|
|
|
|
|
2022-08-24 09:51:20 +00:00
|
|
|
Scenario: The user can switch state to automatic
|
|
|
|
When the users switches state to automatic
|
2022-08-12 16:31:39 +00:00
|
|
|
Then the user status is automatic
|
|
|
|
When the user restarts the app
|
2022-10-19 10:39:48 +00:00
|
|
|
And the user "tester123" logs in with password "TesTEr16843/!@00"
|
2022-08-12 16:31:39 +00:00
|
|
|
Then the user status is automatic
|
2022-08-29 18:03:50 +00:00
|
|
|
|
2022-08-24 09:51:20 +00:00
|
|
|
Scenario: The user can change the password and login with new password
|
|
|
|
When the user changes the password from TesTEr16843/!@00 to NewPassword@12345
|
|
|
|
And the user restarts the app
|
2022-10-19 10:39:48 +00:00
|
|
|
And the user "tester123" logs in with password "NewPassword@12345"
|
2022-08-24 09:51:20 +00:00
|
|
|
Then the user lands on the signed in app
|