diff --git a/test/appium/tests/atomic/chats/test_commands.py b/test/appium/tests/atomic/chats/test_commands.py index 41d9ab2284c9..d1349ee6c970 100644 --- a/test/appium/tests/atomic/chats/test_commands.py +++ b/test/appium/tests/atomic/chats/test_commands.py @@ -75,6 +75,7 @@ def test_network_mismatch_for_send_request_commands(self): @marks.testrail_id(5306) @marks.critical + @marks.skip def test_send_eth_in_1_1_chat(self): recipient = transaction_recipients['A'] sender = transaction_senders['A'] diff --git a/test/appium/tests/atomic/transactions/test_daaps_transactions.py b/test/appium/tests/atomic/transactions/test_daaps_transactions.py index 8904bc7d025c..8da841b11679 100644 --- a/test/appium/tests/atomic/transactions/test_daaps_transactions.py +++ b/test/appium/tests/atomic/transactions/test_daaps_transactions.py @@ -36,10 +36,8 @@ def test_sign_message_from_daap(self): status_test_dapp.transactions_button.click() send_transaction_view = status_test_dapp.sign_message_button.click() send_transaction_view.find_full_text('Test message') - send_transaction_view.sign_transaction_button.click_until_presence_of_element( - send_transaction_view.enter_password_input) send_transaction_view.enter_password_input.send_keys(password) - send_transaction_view.sign_transaction_button.click() + send_transaction_view.sign_button.click() @marks.testrail_id(5333) @marks.critical @@ -72,7 +70,7 @@ def test_sign_typed_message(self): status_test_dapp.transactions_button.click() send_transaction_view = status_test_dapp.sign_typed_message_button.click() send_transaction_view.enter_password_input.send_keys(common_password) - send_transaction_view.sign_transaction_button.click() + send_transaction_view.sign_button.click() status_test_dapp.find_text_part('0xde3048417e5881acc9ca8466ab0b3e2f9f965a70acabbda2d140e95a28b13d2d' '2d38eba6c0a5bfdc50e5d59e0ed3226c749732fd4a9374b57f34121eaff2a5081c') @@ -145,7 +143,7 @@ def test_logcat_sign_message_from_daap(self): send_transaction_view.sign_transaction_button.click_until_presence_of_element( send_transaction_view.enter_password_input) send_transaction_view.enter_password_input.send_keys(unique_password) - send_transaction_view.sign_transaction_button.click() + send_transaction_view.sign_button.click() send_transaction_view.check_no_values_in_logcat(password=unique_password) @marks.testrail_id(5372) diff --git a/test/appium/tests/atomic/transactions/test_wallet.py b/test/appium/tests/atomic/transactions/test_wallet.py index a4d408aa8ba7..c42af4f02a8c 100644 --- a/test/appium/tests/atomic/transactions/test_wallet.py +++ b/test/appium/tests/atomic/transactions/test_wallet.py @@ -321,6 +321,7 @@ def test_insufficient_funds_wallet_positive_balance(self): @marks.testrail_id(5359) @marks.critical + @marks.skip def test_modify_transaction_fee_values(self): sender = transaction_senders['U'] sign_in_view = SignInView(self.driver)