mirror of
https://github.com/status-im/desktop-qa-automation.git
synced 2025-02-24 18:18:08 +00:00
46 lines
2.2 KiB
Python
46 lines
2.2 KiB
Python
import time
|
|
|
|
import allure
|
|
import pytest
|
|
from allure_commons._allure import step
|
|
|
|
import constants
|
|
from gui.components.signing_phrase_popup import SigningPhrasePopup
|
|
from gui.components.wallet.authenticate_popup import AuthenticatePopup
|
|
from gui.main_window import MainWindow
|
|
|
|
|
|
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/edit/703598',
|
|
'Add new account from wallet settings screen')
|
|
@pytest.mark.case(703598)
|
|
@pytest.mark.parametrize('user_account', [constants.user.user_account_one])
|
|
@pytest.mark.parametrize('name, color, emoji, emoji_unicode, '
|
|
'new_name, new_color, new_emoji, new_emoji_unicode', [
|
|
pytest.param('GenAcc1', '#2a4af5', 'sunglasses', '1f60e',
|
|
'GenAcc1edited', '#216266', 'thumbsup', '1f44d')
|
|
])
|
|
def test_add_new_account_from_wallet_settings(main_screen: MainWindow, user_account,
|
|
color: str, emoji: str, emoji_unicode: str,
|
|
name: str, new_name: str, new_color: str, new_emoji: str,
|
|
new_emoji_unicode: str):
|
|
with step('Open add account pop up from wallet settings'):
|
|
add_account_popup = \
|
|
main_screen.left_panel.open_settings().left_panel.open_wallet_settings().open_add_account_pop_up()
|
|
|
|
with step('Add a new generated account from wallet settings screen'):
|
|
|
|
add_account_popup.set_name(name).set_emoji(emoji).set_color(color).save()
|
|
AuthenticatePopup().wait_until_appears().authenticate(user_account.password)
|
|
add_account_popup.wait_until_hidden()
|
|
|
|
with step('Verify that the account is correctly displayed in accounts list'):
|
|
|
|
wallet = main_screen.left_panel.open_wallet()
|
|
SigningPhrasePopup().wait_until_appears().confirm_phrase()
|
|
expected_account = constants.user.account_list_item(name, color.lower(), emoji_unicode)
|
|
started_at = time.monotonic()
|
|
while expected_account not in wallet.left_panel.accounts:
|
|
time.sleep(1)
|
|
if time.monotonic() - started_at > 15:
|
|
raise LookupError(f'Account {expected_account} not found in {wallet.left_panel.accounts}')
|