additional check for stateous user without domain
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
This commit is contained in:
parent
b1170179cd
commit
3b6c6972d3
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue