mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-11 14:54:48 +00:00
cc64e443e4
To make the feature files style consistent for direct string and also use it for examples (params), it has been introduced "" to all plain strings and also into the parameters, that now will be written like this: "<example-param>": Applied on the complete `suite_messaging` and in specific statements of the `onboarding / login`.
33 lines
1.3 KiB
Gherkin
33 lines
1.3 KiB
Gherkin
Feature: Status Desktop Transaction
|
|
|
|
As a user I want to perform transaction
|
|
|
|
Background: Sign up & Enable wallet section & Toggle test networks
|
|
Given A first time user lands on the status desktop and navigates to import seed phrase
|
|
When The user inputs the seed phrase pelican chief sudden oval media rare swamp elephant lawsuit wheat knife initial
|
|
And user clicks on the following ui-component seedPhraseView_Submit_Button
|
|
When user signs up with username "tester123" and password "qqqqqqqqqq"
|
|
Then the user lands on the signed in app
|
|
When the user opens app settings screen
|
|
And the user activates wallet and opens the wallet settings
|
|
And the user toggles test networks
|
|
And the user opens wallet screen
|
|
And the user accepts the signing phrase
|
|
|
|
@mayfail
|
|
Scenario Outline: User sends a transaction
|
|
When the user sends a transaction to himself from account Status account of <amount> <token> on <chain_name> with password qqqqqqqqqq
|
|
Then the transaction is in progress
|
|
|
|
Examples:
|
|
| amount | token | chain_name |
|
|
| 1 | ETH | Goerli |
|
|
| 0 | ETH | Goerli |
|
|
| 1 | STT | Goerli |
|
|
| 0 | STT | Goerli |
|
|
|
|
@mayfail
|
|
Scenario: User registers a ENS name
|
|
When the user registers a random ens name with password qqqqqqqqqq
|
|
Then the transaction is in progress
|