e2e: fixed system back button click

This commit is contained in:
pavloburykh 2022-08-09 17:51:35 +03:00
parent a94797710a
commit b565cbf85e
No known key found for this signature in database
GPG Key ID: 11D9383A6FB7F1D8
2 changed files with 7 additions and 7 deletions

View File

@ -52,11 +52,11 @@ class TestOnboardingOneDeviceMerged(MultipleSharedDeviceTestCase):
self.profile.share_via_messenger()
if not self.profile.element_by_text_part(public_key).is_element_present():
self.errors.append("Can't share public key")
self.profile.click_system_back_button()
self.profile.click_system_back_button_until_element_is_shown()
self.home.just_fyi("Check that can paste contact code in chat message input")
home = self.profile.home_button.click()
chat = home.add_contact(transaction_senders['M']['public_key'])
self.profile.home_button.double_click()
chat = self.home.add_contact(transaction_senders['M']['public_key'])
chat.chat_message_input.click()
chat.paste_text()
input_text = chat.chat_message_input.text
@ -80,7 +80,7 @@ class TestOnboardingOneDeviceMerged(MultipleSharedDeviceTestCase):
wallet.share_via_messenger()
if not wallet.element_by_text_part(address).is_element_present():
self.errors.append("Can't share address")
wallet.click_system_back_button()
wallet.click_system_back_button_until_element_is_shown()
self.home.just_fyi("Check that can paste wallet address in chat message input")
wallet.home_button.click()

View File

@ -96,7 +96,7 @@ class TestDeeplinkChatProfileOneDevice(MultipleSharedDeviceTestCase):
'https://join.status.im/u/%s' % dummy_user["public_key"]).is_element_present():
self.errors.append("Can't share public key of contact")
for _ in range(2):
chat.click_system_back_button()
chat.click_system_back_button_until_element_is_shown()
@marks.testrail_id(702252)
def test_share_user_profile_url_public_chat(self):
@ -112,7 +112,7 @@ class TestDeeplinkChatProfileOneDevice(MultipleSharedDeviceTestCase):
'https://join.status.im/%s' % self.public_chat_name).is_element_present():
self.errors.append("Can't share link to public chat")
for _ in range(2):
self.public_chat.click_system_back_button()
self.public_chat.click_system_back_button_until_element_is_shown()
self.public_chat.get_back_to_home_view()
@marks.testrail_id(702251)
@ -131,7 +131,7 @@ class TestDeeplinkChatProfileOneDevice(MultipleSharedDeviceTestCase):
browser.element_by_text_part(expeceted_text_2).is_element_present()):
self.errors.append("Can't share link to URL")
browser.click_system_back_button(1)
browser.click_system_back_button_until_element_is_shown()
self.errors.verify_no_errors()