2023-06-07 12:19:04 +00:00
|
|
|
Feature: Wallet -> Saved addresses Management
|
2022-07-18 08:37:37 +00:00
|
|
|
|
|
|
|
|
2023-06-06 14:15:28 +00:00
|
|
|
Background:
|
|
|
|
Given A first time user lands on the status desktop and generates new key
|
|
|
|
And the user signs up with username "tester123" and password "TesTEr16843/!@00"
|
|
|
|
And the user lands on the signed in app
|
|
|
|
And the user opens the wallet section
|
|
|
|
And the user accepts the signing phrase
|
2022-10-21 07:17:48 +00:00
|
|
|
|
2024-01-12 12:49:16 +00:00
|
|
|
@mayfail
|
2023-06-15 12:53:40 +00:00
|
|
|
Scenario Outline: The user can add saved address with all network options and delete address record
|
|
|
|
When the user adds a saved address with name "<name>" and address "<address>"
|
|
|
|
Then the saved address with name "<name>" is in the list of saved addresses
|
|
|
|
When the user deletes the saved address with name "<name>"
|
|
|
|
Then the saved address with name "<name>" is not in the list of saved addresses
|
|
|
|
Examples:
|
2024-01-04 15:53:04 +00:00
|
|
|
| name | address |
|
|
|
|
| Saved address | 0x8397bc3c5a60a1883174f722403d63a8833312b7 |
|
|
|
|
| ENS name | nastya.stateofus.eth |
|
2023-06-15 12:53:40 +00:00
|
|
|
|
2024-01-12 12:49:16 +00:00
|
|
|
@mayfail
|
2023-06-15 12:53:40 +00:00
|
|
|
Scenario Outline: The user can add saved address with all network options, change address name and disable networks
|
|
|
|
When the user adds a saved address with name "<name>" and address "<address>"
|
2023-06-19 17:54:17 +00:00
|
|
|
And the user edits a saved address with name "<name>" and address "<address>" to "<new_name>"
|
2023-06-15 12:53:40 +00:00
|
|
|
Then the saved address with name "<new_name>" is in the list of saved addresses
|
|
|
|
# And the user can open saved address in "<explorer>" TODO: later
|
2023-02-24 12:59:14 +00:00
|
|
|
Examples:
|
2024-01-04 15:53:04 +00:00
|
|
|
| name | address |new_name |
|
|
|
|
| Saved address | 0x8397bc3c5a60a1883174f722403d63a8833312b7 |Saved addressNew |
|
|
|
|
| Ens name | nastya.stateofus.eth |Ens nameNew |
|
2023-06-15 12:53:40 +00:00
|
|
|
|
2023-06-14 09:56:55 +00:00
|
|
|
# | foo | nastya.stateofus.eth | bar | https://github.com/status-im/status-desktop/issues/11090
|
2023-06-07 12:19:04 +00:00
|
|
|
# TODO: actions from burger menu
|
|
|
|
# TODO: enhance edit actions to change networks
|
2023-06-14 09:56:55 +00:00
|
|
|
# TODO: test for Share button
|
|
|
|
# TODO: add logic to recognize mainnet / testnet and select appropriate networks
|