2022-06-29 01:12:35 +00:00
|
|
|
|
|
|
|
from screens.StatusMainScreen import StatusMainScreen
|
|
|
|
from screens.SettingsScreen import SettingsScreen
|
|
|
|
|
|
|
|
_statusMain = StatusMainScreen()
|
2022-07-21 12:15:02 +00:00
|
|
|
_settingsScreen = SettingsScreen()
|
2022-06-29 01:12:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
@When("the user opens app settings screen")
|
2022-07-07 23:56:21 +00:00
|
|
|
def step(context: any):
|
2022-06-29 01:12:35 +00:00
|
|
|
_statusMain.open_settings()
|
|
|
|
|
2022-08-08 10:07:29 +00:00
|
|
|
@When("the user opens the wallet settings")
|
|
|
|
def step(context: any):
|
|
|
|
_settingsScreen.open_wallet_settings()
|
|
|
|
|
2022-07-18 08:37:37 +00:00
|
|
|
@When("the user activates wallet and opens the wallet settings")
|
|
|
|
def step(context: any):
|
|
|
|
_settingsScreen.activate_open_wallet_settings()
|
|
|
|
|
|
|
|
@When("the user activates wallet and opens the wallet section")
|
2022-07-07 23:56:21 +00:00
|
|
|
def step(context: any):
|
|
|
|
_settingsScreen.activate_open_wallet_section()
|
2022-07-20 08:18:27 +00:00
|
|
|
|
|
|
|
@When("the user deletes the account |any|")
|
|
|
|
def step(context: any, account_name: str):
|
|
|
|
_statusMain.open_settings()
|
|
|
|
_settingsScreen.delete_account(account_name)
|
2022-07-07 23:56:21 +00:00
|
|
|
|
2022-07-21 12:15:02 +00:00
|
|
|
@When("the user toggles test networks")
|
|
|
|
def step(context: any):
|
|
|
|
_settingsScreen.toggle_test_networks()
|
2022-08-10 09:23:06 +00:00
|
|
|
|
|
|
|
@When("the user selects the default account")
|
|
|
|
def step(context: any):
|
|
|
|
_settingsScreen.select_default_account()
|
|
|
|
|
|
|
|
@When("the user edits default account to |any| name and |any| color")
|
|
|
|
def step(context: any, account_name: str, account_color: str):
|
|
|
|
_settingsScreen.edit_account(account_name, account_color)
|
|
|
|
|
2022-07-21 12:15:02 +00:00
|
|
|
|
2022-08-03 17:31:59 +00:00
|
|
|
@Then("the address |any| is displayed in the wallet")
|
|
|
|
def step(context: any, address: str):
|
|
|
|
_settingsScreen.verify_address(address)
|
2022-07-20 08:18:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
@Then("the account |any| is not in the list of accounts")
|
|
|
|
def step(context: any, account_name):
|
|
|
|
_settingsScreen.verify_no_account(account_name)
|
2022-08-10 09:23:06 +00:00
|
|
|
|
|
|
|
@Then("the new account with name |any| and color |any| is updated")
|
|
|
|
def step(context, new_name: str, new_color: str):
|
|
|
|
_settingsScreen.verify_editedAccount(new_name, new_color)
|
2022-08-11 12:24:49 +00:00
|
|
|
|
2022-08-10 10:57:21 +00:00
|
|
|
@When("the user clicks on Sign out and Quit")
|
|
|
|
def step(context: any):
|
|
|
|
ctx = currentApplicationContext()
|
|
|
|
_settingsScreen.sign_out_and_quit_the_app(ctx.pid)
|
|
|
|
|
|
|
|
@Then("the app is closed")
|
|
|
|
def step(context: any):
|
2022-08-11 12:24:49 +00:00
|
|
|
_settingsScreen.verify_the_app_is_closed()
|
|
|
|
|
|
|
|
@When("the user opens the communities settings")
|
|
|
|
def step(context: any):
|
|
|
|
_settingsScreen.open_communities_section()
|
|
|
|
|
|
|
|
@When("the user leaves the community")
|
|
|
|
def step(context: any):
|
|
|
|
_settingsScreen.leave_community()
|