2022-08-12 18:55:06 +00:00
|
|
|
Feature: Status Desktop Transaction
|
|
|
|
|
2022-10-21 07:17:48 +00:00
|
|
|
As a user I want to perform transactions
|
|
|
|
|
|
|
|
The feature start sequence is the following (setup on its own `bdd_hooks`):
|
|
|
|
|
|
|
|
** given A first time user lands on the status desktop and navigates to import seed phrase
|
|
|
|
** and the user inputs the seed phrase "pelican chief sudden oval media rare swamp elephant lawsuit wheat knife initial"
|
|
|
|
** and the user clicks on the following ui-component seedPhraseView_Submit_Button
|
|
|
|
** and the user signs up with username "tester123" and password "qqqqqqqqqq"
|
|
|
|
** and the user lands on the signed in app
|
|
|
|
** and the user opens app settings screen
|
|
|
|
** and the user activates wallet
|
|
|
|
** and the user opens the wallet settings
|
|
|
|
** and the user toggles test networks
|
|
|
|
** and the user opens wallet screen
|
|
|
|
** and the user accepts the signing phrase
|
|
|
|
|
2023-01-24 15:01:14 +00:00
|
|
|
@mayfail
|
2022-10-21 07:17:48 +00:00
|
|
|
Scenario Outline: The 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"
|
2022-09-20 12:22:04 +00:00
|
|
|
Then the transaction is in progress
|
2022-08-12 18:55:06 +00:00
|
|
|
|
2022-09-20 12:22:04 +00:00
|
|
|
Examples:
|
|
|
|
| amount | token | chain_name |
|
2022-10-20 12:58:56 +00:00
|
|
|
| 0.1 | ETH | Ethereum Mainnet |
|
|
|
|
#| 0 | ETH | Goerli |
|
|
|
|
#| 1 | STT | Goerli |
|
|
|
|
#| 0 | STT | Goerli |
|
2022-08-09 13:52:17 +00:00
|
|
|
|
2022-09-20 12:22:04 +00:00
|
|
|
@mayfail
|
2022-10-21 07:17:48 +00:00
|
|
|
Scenario: The user registers an ENS name
|
|
|
|
When the user registers a random ens name with password "qqqqqqqqqq"
|
2022-09-20 12:22:04 +00:00
|
|
|
Then the transaction is in progress
|