status-desktop/test/ui-test/testSuites/suite_wallet/shared/steps/walletSteps.py

111 lines
4.1 KiB
Python
Raw Normal View History

import steps.walletInitSteps as wallet_init_steps
from screens.StatusMainScreen import StatusMainScreen
from screens.StatusWalletScreen import StatusWalletScreen
from scripts.decorators import verify_screenshot
from common.Common import str_to_bool
2022-07-21 12:15:02 +00:00
_statusMain = StatusMainScreen()
_walletScreen = StatusWalletScreen()
#########################
### PRECONDITIONS region:
#########################
@Given("the user accepts the signing phrase")
def step(context):
the_user_accepts_the_signing_phrase()
@Given("the user clicks on the first account")
2022-07-21 12:15:02 +00:00
def step(context):
_walletScreen.click_first_account()
2022-07-21 12:15:02 +00:00
@Given("the user opens wallet screen")
def step(context):
wallet_init_steps.the_user_opens_wallet_screen()
#########################
### ACTIONS region:
#########################
@When("the user adds watch only account \"|any|\" named \"|any|\"")
@verify_screenshot
def step(context, address, account_name):
_walletScreen.add_watch_only_account(account_name, address)
@When("an account named \"|any|\" is generated and authenticated using password \"|any|\"")
def step(context, account_name, password):
_walletScreen.generate_new_account(account_name, password)
@When("an account named \"|any|\" is added via private key \"|any|\" and authenticated using password \"|any|\"")
def step(context, account_name, private_key, password):
_walletScreen.import_private_key(account_name, password, private_key)
@When("an account named \"|any|\" is added via imported seed phrase \"|any|\" and authenticated using password \"|any|\"")
def step(context, account_name, mnemonic, password):
_walletScreen.import_seed_phrase(account_name, password, mnemonic)
@When("the user sends a transaction to himself from account \"|any|\" of \"|any|\" \"|any|\" on \"|any|\" with password \"|any|\"")
2022-07-21 12:15:02 +00:00
def step(context, account_name, amount, token, chain_name, password):
_walletScreen.send_transaction(account_name, amount, token, chain_name, password)
@When("the user adds a saved address named \"|any|\" and address \"|any|\"")
def step(context, name, address):
_walletScreen.add_saved_address(name, address)
@When("the user edits a saved address with name \"|any|\" to \"|any|\"")
def step(context, name, new_name):
_walletScreen.edit_saved_address(name, new_name)
@When("the user deletes the saved address with name \"|any|\"")
def step(context, name):
_walletScreen.delete_saved_address(name)
@When("the user toggles favourite for the saved address with name \"|any|\"")
def step(context, name):
_walletScreen.toggle_favourite_for_saved_address(name)
@When("the user toggles the network |any|")
def step(context, network_name):
_walletScreen.toggle_network(network_name)
2022-08-09 13:52:17 +00:00
#########################
### VERIFICATIONS region:
#########################
@Then("the user has a positive balance of \"|any|\"")
def step(context, symbol):
_walletScreen.verify_positive_balance(symbol)
@Then("the new account \"|any|\" is added")
def step(context, account_name):
2022-07-21 12:15:02 +00:00
_walletScreen.verify_account_name_is_present(account_name)
@Then("the transaction is in progress")
def step(context):
_walletScreen.verify_transaction()
@Then("the name \"|any|\" is in the list of saved addresses")
def step(context, name: str):
_walletScreen.verify_saved_address_exists(name)
@Then("the name \"|any|\" is not in the list of saved addresses")
def step(context, name: str):
_walletScreen.verify_saved_address_doesnt_exist(name)
@Then("the collectibles are listed for the |any|")
def step(context, account_name: str):
_walletScreen.verify_collectibles_exist(account_name)
@Then("the transactions are listed for the added account")
def step(context):
_walletScreen.verify_transactions_exist()
@Then("the saved address \"|any|\" has favourite status \"|any|\"")
def step(context, name, favourite):
_walletScreen.check_favourite_status_for_saved_address(name, str_to_bool(favourite))
###########################################################################
### COMMON methods used in different steps given/when/then region:
###########################################################################