From 3b6c6972d34543d4ab4a5f61d4cc0d37787dfe27 Mon Sep 17 00:00:00 2001 From: Churikova Tetiana Date: Wed, 18 Dec 2019 10:48:08 +0100 Subject: [PATCH] additional check for stateous user without domain Signed-off-by: Andrey Shovkoplyas --- .../atomic/account_management/test_wallet_management.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/test/appium/tests/atomic/account_management/test_wallet_management.py b/test/appium/tests/atomic/account_management/test_wallet_management.py index dba8344f4b..a99af44ef2 100644 --- a/test/appium/tests/atomic/account_management/test_wallet_management.py +++ b/test/appium/tests/atomic/account_management/test_wallet_management.py @@ -339,4 +339,13 @@ class TestWalletManagement(SingleDeviceTestCase): if send_transaction.enter_recipient_address_text.text != formatted_ens_user_address: self.errors.append('ENS address on another domain is not resolved as recipient') + wallet.just_fyi('checking that "stateofus.eth" name without domain will be resolved as recipient') + send_transaction.chose_recipient_button.click() + send_transaction.enter_recipient_address_button.click() + send_transaction.enter_recipient_address_input.set_value(ens_user['ens']) + send_transaction.done_button.click() + + if send_transaction.enter_recipient_address_text.text != formatted_ens_user_address: + self.errors.append('ENS address "stateofus.eth" without domain is not resolved as recipient') + self.errors.verify_no_errors()