diff --git a/test/appium/tests/atomic/account_management/test_profile.py b/test/appium/tests/atomic/account_management/test_profile.py index 568d9b5018..0b8b2b2072 100644 --- a/test/appium/tests/atomic/account_management/test_profile.py +++ b/test/appium/tests/atomic/account_management/test_profile.py @@ -689,7 +689,8 @@ class TestProfileMultipleDevice(MultipleDeviceTestCase): profile_1.mail_server_by_name(server_name).click() profile_1.mail_server_connect_button.click() profile_1.confirm_button.click() - profile_1.retry_to_connect_to_mailserver() + if profile_1.element_by_text_part("Error connecting").is_element_displayed(40): + profile_1.retry_to_connect_to_mailserver() profile_1.get_back_to_home_view() profile_1.home_button.click() diff --git a/test/appium/tests/atomic/dapps_and_browsing/test_deep_links.py b/test/appium/tests/atomic/dapps_and_browsing/test_deep_links.py index 0131fd91fd..b8f6e87f2a 100644 --- a/test/appium/tests/atomic/dapps_and_browsing/test_deep_links.py +++ b/test/appium/tests/atomic/dapps_and_browsing/test_deep_links.py @@ -10,6 +10,8 @@ class TestDeepLinks(SingleDeviceTestCase): @marks.testrail_id(5396) @marks.high + @marks.skip + # TODO: uncomment after https://github.com/status-im/status-react/issues/10083 will be implemented in app def test_open_public_chat_using_deep_link(self): sign_in_view = SignInView(self.driver) sign_in_view.create_user() @@ -26,7 +28,7 @@ class TestDeepLinks(SingleDeviceTestCase): @marks.testrail_id(5441) @marks.medium @marks.skip - # TODO: uncomment after https://github.com/status-im/universal-links-handler/pull/29 will be implemented in app + # TODO: uncomment after https://github.com/status-im/status-react/issues/10083 will be implemented in app def test_open_user_profile_using_deep_link(self): sign_in_view = SignInView(self.driver) sign_in_view.create_user() @@ -42,7 +44,7 @@ class TestDeepLinks(SingleDeviceTestCase): @marks.testrail_id(5442) @marks.medium @marks.skip - # TODO: uncomment after https://github.com/status-im/universal-links-handler/pull/29 will be implemented in app + # TODO: uncomment after https://github.com/status-im/status-react/issues/10083 will be implemented in app def test_open_dapp_using_deep_link(self): sign_in_view = SignInView(self.driver) sign_in_view.create_user() @@ -60,7 +62,7 @@ class TestDeepLinks(SingleDeviceTestCase): @marks.testrail_id(5780) @marks.medium @marks.skip - # TODO: uncomment after https://github.com/status-im/universal-links-handler/pull/29 will be implemented in app + # TODO: uncomment after https://github.com/status-im/status-react/issues/10083 will be implemented in app def test_open_own_user_profile_using_deep_link(self): sign_in_view = SignInView(self.driver) sign_in_view.recover_access(passphrase=basic_user['passphrase']) @@ -75,6 +77,8 @@ class TestDeepLinks(SingleDeviceTestCase): @marks.testrail_id(5781) @marks.medium + @marks.skip + # TODO: uncomment after https://github.com/status-im/status-react/issues/10083 will be implemented in app def test_deep_link_with_invalid_user_public_key(self): sign_in_view = SignInView(self.driver) sign_in_view.create_user() diff --git a/test/appium/views/profile_view.py b/test/appium/views/profile_view.py index 0e2163611f..641300d7cd 100644 --- a/test/appium/views/profile_view.py +++ b/test/appium/views/profile_view.py @@ -736,6 +736,8 @@ class ProfileView(BaseView): self.element_by_text('RETRY').click() i += 1 self.just_fyi("retrying to connect: %s attempt" % i) + # TODO: uncomment after https://github.com/status-im/status-react/issues/9269 + time.sleep(10) if i == 5: self.driver.fail("Failed to connect after %s attempts" % i)