mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 22:36:24 +00:00
4510bc1e18
For the difference adding saved addresses providing ens name now waits for an address associated to that ens to be resolved. And also when adding saved address using an address we're checking if there is an ens name associated with it. All that works in local just fine, but on CI fails. Could be due to internet connection loss. Till we figure out why it's like that, disabling that case.
37 lines
2.1 KiB
Gherkin
37 lines
2.1 KiB
Gherkin
Feature: Wallet -> Saved addresses Management
|
|
|
|
|
|
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
|
|
|
|
@mayfail
|
|
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:
|
|
| name | address |
|
|
| Saved address | 0x8397bc3c5a60a1883174f722403d63a8833312b7 |
|
|
| ENS name | nastya.stateofus.eth |
|
|
|
|
@mayfail
|
|
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>"
|
|
And the user edits a saved address with name "<name>" and address "<address>" to "<new_name>"
|
|
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
|
|
Examples:
|
|
| name | address |new_name |
|
|
| Saved address | 0x8397bc3c5a60a1883174f722403d63a8833312b7 |Saved addressNew |
|
|
| Ens name | nastya.stateofus.eth |Ens nameNew |
|
|
|
|
# | foo | nastya.stateofus.eth | bar | https://github.com/status-im/status-desktop/issues/11090
|
|
# TODO: actions from burger menu
|
|
# TODO: enhance edit actions to change networks
|
|
# TODO: test for Share button
|
|
# TODO: add logic to recognize mainnet / testnet and select appropriate networks |