chore(@tests): fix import seed phrase test, comment out syncing test
This commit is contained in:
parent
29ee283262
commit
0f9c1236a3
|
@ -31,8 +31,8 @@ def keys_screen(main_window) -> KeysView:
|
|||
def test_import_seed_phrase(aut: AUT, keys_screen, main_window, user_account, autocomplete: bool):
|
||||
with step('Open import seed phrase view and enter seed phrase'):
|
||||
input_view = keys_screen.open_import_seed_phrase_view().open_seed_phrase_input_view()
|
||||
input_view.input_seed_phrase(user_account.seed_phrase)
|
||||
profile_view = input_view.input_seed_phrase(user_account.seed_phrase, autocomplete)
|
||||
input_view.input_seed_phrase(user_account.seed_phrase, autocomplete)
|
||||
profile_view = input_view.import_seed_phrase()
|
||||
profile_view.set_display_name(user_account.name)
|
||||
|
||||
with step('Finalize onboarding and open main screen'):
|
||||
|
|
|
@ -31,6 +31,7 @@ def sync_screen(main_window) -> SyncCodeView:
|
|||
@allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/703592', 'Sync device during onboarding')
|
||||
@pytest.mark.case(703592)
|
||||
@pytest.mark.parametrize('user_data', [configs.testpath.TEST_USER_DATA / 'user_account_one'])
|
||||
@pytest.mark.skip(reason="https://github.com/status-im/desktop-qa-automation/issues/174")
|
||||
def test_sync_device_during_onboarding(multiple_instance, user_data):
|
||||
user: UserAccount = constants.user_account_one
|
||||
main_window = MainWindow()
|
||||
|
|
Loading…
Reference in New Issue