status-desktop/test/ui-test/testSuites/suite_status/shared/steps/settingsSteps.py

177 lines
5.8 KiB
Python
Raw Normal View History

from screens.StatusMainScreen import StatusMainScreen
from screens.SettingsScreen import SettingsScreen
from screens.StatusLanguageScreen import StatusLanguageScreen
_statusMain = StatusMainScreen()
2022-07-21 12:15:02 +00:00
_settingsScreen = SettingsScreen()
_languageScreen = StatusLanguageScreen()
@When("the user opens app settings screen")
def step(context: any):
_statusMain.open_settings()
@When("the user opens the wallet settings")
def step(context: any):
_settingsScreen.open_wallet_settings()
@When("the user opens the messaging settings")
def step(context: any):
_settingsScreen.open_messaging_settings()
@When("the user activates link preview")
def step(context: any):
_settingsScreen.activate_link_preview()
@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")
def step(context: any):
_settingsScreen.activate_open_wallet_section()
@When("the user deletes the account |any|")
def step(context: any, account_name: str):
_statusMain.open_settings()
_settingsScreen.delete_account(account_name)
2022-07-21 12:15:02 +00:00
@When("the user toggles test networks")
def step(context: any):
_settingsScreen.toggle_test_networks()
@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-08-09 13:52:17 +00:00
@When("the user registers a random ens name with password |any|")
def step(context, password):
_statusMain.open_settings()
_settingsScreen.register_random_ens_name(password)
2022-07-21 12:15:02 +00:00
@When("the user clicks on Language & Currency")
def step(context):
_settingsScreen.open_language_and_currency_settings()
_languageScreen.is_screen_loaded()
@When("the user opens the language selector")
def step(context):
_languageScreen.open_language_combobox()
@When("the user selects the language |any|")
def step(context, native):
_languageScreen.select_language(native)
snooze(5) # TODO: Wait until language has changed
@When("the user searches the language |any|")
def step(context, native):
_languageScreen.search_language(native)
@Then("the address |any| is displayed in the wallet")
def step(context: any, address: str):
_settingsScreen.verify_address(address)
@Then("the account |any| is not in the list of accounts")
def step(context: any, account_name):
_settingsScreen.verify_no_account(account_name)
@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)
@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):
_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()
@When("the user opens the profile settings")
def step(context: any):
_settingsScreen.open_profile_settings()
@When("the user sets display name to \"|any|\"")
def step(context, display_name):
_settingsScreen.set_display_name(display_name)
@Then("the user's display name should be \"|any|\"")
def step(context, display_name):
_settingsScreen.verify_display_name(display_name)
@When("the user sets bio to \"|any|\"")
def step(context, bio):
_settingsScreen.set_bio(bio)
@Then("the user's bio should be empty")
def step(context):
_settingsScreen.verify_bio("")
@Then("the user's bio should be \"|any|\"")
def step(context, bio):
_settingsScreen.verify_bio(bio)
@When("the user sets display links to twitter: \"|any|\", personal site: \"|any|\", \"|any|\": \"|any|\"")
def step(context, twitter, personal_site, custom_link_name, custom_link):
_settingsScreen.set_social_links(twitter, personal_site, custom_link_name, custom_link)
@Then("the user's social links should be empty")
def step(context):
_settingsScreen.verify_social_links("", "", "", "")
@Then("the user's social links should be: \"|any|\", personal site: \"|any|\", \"|any|\": \"|any|\"")
def step(context, twitter, personal_site, custom_link_name, custom_link):
_settingsScreen.verify_social_links(twitter, personal_site, custom_link_name, custom_link)
@Then("the application displays |any| as the selected language")
def step(context, native):
_languageScreen.verify_current_language(native)
# TODO: Verify some texts have been changed in the application (not done now bc translations are inconsistent
# and not all expected languages have the same texts translated
@When("the user backs up the wallet seed phrase")
def step(context):
_settingsScreen.check_backup_seed_phrase_workflow()
@Then("the backup seed phrase indicator is not displayed")
def step(context):
_settingsScreen.verify_seed_phrase_indicator_not_visible()
@When("the users switches his state to offline")
def step(context: any):
_statusMain.set_user_state_offline()
@When("the users switches his state to online")
def step(context: any):
_statusMain.set_user_state_online()
@When("the users switches his state to automatic")
def step(context: any):
_statusMain.set_user_state_to_automatic()
@Then("the user appears offline")
def step(context: any):
_statusMain.user_is_offline()
@Then("the user appears online")
def step(context: any):
_statusMain.user_is_online()
@Then("the user status is automatic")
def step(context: any):
_statusMain.user_is_set_to_automatic()