From a195f2d14331daedb9421f63b93653b3024c8fd1 Mon Sep 17 00:00:00 2001 From: Valentina Novgorodtceva Date: Tue, 5 Mar 2024 19:44:37 +0700 Subject: [PATCH 1/3] chore: enabled login_with_wrong_password test --- tests/onboarding/test_onboarding_negative_scenarios.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/onboarding/test_onboarding_negative_scenarios.py b/tests/onboarding/test_onboarding_negative_scenarios.py index 80433de3..8e5176a4 100644 --- a/tests/onboarding/test_onboarding_negative_scenarios.py +++ b/tests/onboarding/test_onboarding_negative_scenarios.py @@ -18,6 +18,7 @@ pytestmark = marks + @pytest.fixture def keys_screen(main_window) -> KeysView: with step('Open Generate new keys view'): @@ -32,7 +33,6 @@ def keys_screen(main_window) -> KeysView: @pytest.mark.case(702991) @pytest.mark.parametrize('error', [OnboardingMessages.PASSWORD_INCORRECT.value ]) -@pytest.mark.skip(reason="https://github.com/status-im/status-desktop/issues/13758") def test_login_with_wrong_password(aut: AUT, keys_screen, main_window, error: str): user_one: UserAccount = constants.user_account_one user_one_wrong_password: UserAccount = constants.user_account_one_changed_password @@ -63,7 +63,7 @@ def test_login_with_wrong_password(aut: AUT, keys_screen, main_window, error: st login_view.log_in(user_one_wrong_password) time.sleep(2) - with step ('Verify that user cannot log in and the error appears'): + with step('Verify that user cannot log in and the error appears'): assert login_view.login_error_message == error From 1b9cd2b055f54638fed20fb9e0a4d07661cc0f36 Mon Sep 17 00:00:00 2001 From: Valentina Novgorodtceva Date: Wed, 6 Mar 2024 09:52:49 +0700 Subject: [PATCH 2/3] chore: removed skip mark with bug reference (bug is closed) --- tests/settings/test_ens_name_purchase.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/settings/test_ens_name_purchase.py b/tests/settings/test_ens_name_purchase.py index 5b975c66..5c9ec99a 100644 --- a/tests/settings/test_ens_name_purchase.py +++ b/tests/settings/test_ens_name_purchase.py @@ -31,7 +31,6 @@ def keys_screen(main_window) -> KeysView: @pytest.mark.case(704597) @pytest.mark.parametrize('user_account', [constants.user.user_with_funds]) @pytest.mark.parametrize('ens_name', [pytest.param(constants.user.ens_user_name)]) -@pytest.mark.skip(reason='https://github.com/status-im/status-desktop/issues/12988') def test_ens_name_purchase(keys_screen, main_window, user_account, ens_name): 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() From 7682a8f74fb4e32f4c355b61b4a9f591e3b38d47 Mon Sep 17 00:00:00 2001 From: Valentina Novgorodtceva Date: Wed, 6 Mar 2024 13:23:47 +0700 Subject: [PATCH 3/3] chore: updated reference, new bug for ens name purchase --- tests/settings/test_ens_name_purchase.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/settings/test_ens_name_purchase.py b/tests/settings/test_ens_name_purchase.py index 5c9ec99a..7f5077f4 100644 --- a/tests/settings/test_ens_name_purchase.py +++ b/tests/settings/test_ens_name_purchase.py @@ -31,6 +31,7 @@ def keys_screen(main_window) -> KeysView: @pytest.mark.case(704597) @pytest.mark.parametrize('user_account', [constants.user.user_with_funds]) @pytest.mark.parametrize('ens_name', [pytest.param(constants.user.ens_user_name)]) +@pytest.mark.skip(reason='https://github.com/status-im/status-desktop/issues/13850') def test_ens_name_purchase(keys_screen, main_window, user_account, ens_name): 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()