e2e: skipped checks with bugs

This commit is contained in:
Yevheniia Berdnyk 2023-12-05 18:59:08 +02:00
parent 6ef113e821
commit 6b612588c4
No known key found for this signature in database
GPG Key ID: 0642C73C66214825
2 changed files with 11 additions and 9 deletions

View File

@ -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():

View File

@ -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()