From 37b2a065d91007133597a687a2b14a2f3ad01acf Mon Sep 17 00:00:00 2001 From: Anastasiya Semenkevich Date: Mon, 26 Feb 2024 12:31:06 +0300 Subject: [PATCH] chore: replace UI references --- test/e2e/tests/onboarding/test_password_strength.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/e2e/tests/onboarding/test_password_strength.py b/test/e2e/tests/onboarding/test_password_strength.py index 809d793dc2..7ee3cce9b6 100644 --- a/test/e2e/tests/onboarding/test_password_strength.py +++ b/test/e2e/tests/onboarding/test_password_strength.py @@ -61,13 +61,13 @@ def test_check_password_strength_and_login(keys_screen, main_window, user_accoun assert create_password_view.get_password_from_first_field(0) == expected_password create_password_view.click_hide_icon(0) - assert create_password_view.get_password_from_first_field(2) == '●●●●●●●●●●' + assert create_password_view.get_password_from_first_field(2) == '••••••••••' create_password_view.click_show_icon(1) assert create_password_view.get_password_from_confirmation_field(0) == expected_password create_password_view.click_hide_icon(0) - assert create_password_view.get_password_from_confirmation_field(2) == '●●●●●●●●●●' + assert create_password_view.get_password_from_confirmation_field(2) == '••••••••••' with step('Confirm creation of password and set password in confirmation again field'): confirm_password_view = create_password_view.click_create_password() @@ -82,4 +82,4 @@ def test_check_password_strength_and_login(keys_screen, main_window, user_accoun with step('Click show icon to hide password and check that there are dots instead'): create_password_view.click_hide_icon(0) - assert confirm_password_view.get_password_from_confirmation_again_field(2) == '●●●●●●●●●●' + assert confirm_password_view.get_password_from_confirmation_again_field(2) == '••••••••••'