diff --git a/test/e2e/pytest.ini b/test/e2e/pytest.ini index f0a5a4a18d..3b851d0b5c 100644 --- a/test/e2e/pytest.ini +++ b/test/e2e/pytest.ini @@ -20,6 +20,7 @@ markers = onboarding: All tests related to onboarding keycard: All tests related to Keycard functionality wallet: All tests related to wallet functionality + transaction: All tests which are doing transactions online_identifier: All tests related to online_identifier functionality timeout: Apply timeout when test is running longer than expected diff --git a/test/e2e/tests/settings/test_ens_name_purchase.py b/test/e2e/tests/settings/test_ens_name_purchase.py index f8ee7c194d..426916566e 100644 --- a/test/e2e/tests/settings/test_ens_name_purchase.py +++ b/test/e2e/tests/settings/test_ens_name_purchase.py @@ -30,6 +30,7 @@ def keys_screen(main_window) -> KeysView: @allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/704597', 'Settings -> ENS usernames: buy ENS name on testnet') @pytest.mark.case(704597) +@pytest.mark.transaction @pytest.mark.parametrize('user_account', [constants.user.user_with_funds]) @pytest.mark.parametrize('ens_name', [pytest.param(constants.user.ens_user_name)]) def test_ens_name_purchase(keys_screen, main_window, user_account, ens_name): diff --git a/test/e2e/tests/wallet_main_screen/wallet: footer actions/test_footer_actions_send.py b/test/e2e/tests/wallet_main_screen/wallet: footer actions/test_footer_actions_send.py index 0466b9b47f..8c201482a3 100644 --- a/test/e2e/tests/wallet_main_screen/wallet: footer actions/test_footer_actions_send.py +++ b/test/e2e/tests/wallet_main_screen/wallet: footer actions/test_footer_actions_send.py @@ -27,6 +27,7 @@ def keys_screen(main_window) -> KeysView: @allure.testcase('https://ethstatus.testrail.net/index.php?/cases/view/704527', 'Send: can send 0 ETH to address pasted into receiver field with Simple flow') @pytest.mark.case(704527) +@pytest.mark.transaction @pytest.mark.parametrize('user_account', [constants.user.user_with_funds]) @pytest.mark.parametrize('receiver_account_address, amount, asset', [ pytest.param(constants.user.user_account_one.status_address, 0, 'Ether')