From 6b612588c4f91c5a5099b85b25c89ad5065fb528 Mon Sep 17 00:00:00 2001 From: Yevheniia Berdnyk Date: Tue, 5 Dec 2023 18:59:08 +0200 Subject: [PATCH] e2e: skipped checks with bugs --- .../chats/test_public_chat_browsing.py | 1 + .../critical/test_deep_and_universal_links.py | 19 ++++++++++--------- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/test/appium/tests/critical/chats/test_public_chat_browsing.py b/test/appium/tests/critical/chats/test_public_chat_browsing.py index 222686a593..61b1dc1624 100644 --- a/test/appium/tests/critical/chats/test_public_chat_browsing.py +++ b/test/appium/tests/critical/chats/test_public_chat_browsing.py @@ -70,6 +70,7 @@ class TestCommunityOneDeviceMerged(MultipleSharedDeviceTestCase): self.errors.verify_no_errors() @marks.testrail_id(702846) + @marks.xfail(reason="Issue #18075", run=False) def test_community_navigate_to_channel_when_relaunch(self): text_message = 'some_text' if not self.channel.chat_message_input.is_element_displayed(): diff --git a/test/appium/tests/critical/test_deep_and_universal_links.py b/test/appium/tests/critical/test_deep_and_universal_links.py index f6be00812a..2776da2b26 100644 --- a/test/appium/tests/critical/test_deep_and_universal_links.py +++ b/test/appium/tests/critical/test_deep_and_universal_links.py @@ -111,14 +111,15 @@ class TestDeepLinksOneDevice(MultipleSharedDeviceTestCase): "community-admins-will-review-your-request").is_element_displayed(10): self.errors.append("Closed community was not requested to join by the url %s" % community_url) - self.home.just_fyi("Opening a community channel URL from google search bar with no account created") - self.driver.reset() - self.home.click_system_home_button() - channel_url = "https://status.app/cc/Ow==#zQ3shbmfT3hvh4mKa1v6uAjjyztQEroh8Mfn6Ckegjd7LT3XK" - self.home.open_link_from_google_search_app(channel_url, app_package) - self.sign_in.create_user() - if not self.home.element_by_translation_id( - "community-admins-will-review-your-request").is_element_displayed(10): - self.errors.append("Created user was not redirected to a community channel by the url %s" % channel_url) + # ToDo: enable when https://github.com/status-im/status-mobile/issues/18074 is fixed + # self.home.just_fyi("Opening a community channel URL from google search bar with no account created") + # self.driver.reset() + # self.home.click_system_home_button() + # channel_url = "https://status.app/cc/Ow==#zQ3shbmfT3hvh4mKa1v6uAjjyztQEroh8Mfn6Ckegjd7LT3XK" + # self.home.open_link_from_google_search_app(channel_url, app_package) + # self.sign_in.create_user() + # if not self.home.element_by_translation_id( + # "community-admins-will-review-your-request").is_element_displayed(10): + # self.errors.append("Created user was not redirected to a community channel by the url %s" % channel_url) self.errors.verify_no_errors()