e2e: fixes for mutual contacts

This commit is contained in:
Churikova Tetiana 2023-01-13 19:22:00 +01:00
parent 2f52cb1f0c
commit 4960f5a59c
No known key found for this signature in database
GPG Key ID: 0D4EA7B33B47E6D8
2 changed files with 2 additions and 9 deletions

View File

@ -1245,14 +1245,14 @@ class TestOneToOneChatMultipleSharedDevicesNewUi(MultipleSharedDeviceTestCase):
self.profile_1.just_fyi("Sending contact request via Profile > Contacts") self.profile_1.just_fyi("Sending contact request via Profile > Contacts")
self.profile_1.click_system_back_button_until_element_is_shown(self.profile_1.contacts_button) self.profile_1.click_system_back_button_until_element_is_shown(self.profile_1.contacts_button)
self.profile_1.add_contact_via_contacts_list(self.public_key_2) self.profile_1.add_contact_via_contacts_list(self.public_key_2)
self.chat_1 = self.profile_1.open_contact_from_profile(self.default_username_2)
self.home_2.just_fyi("Accepting contact request from activity centre") self.home_2.just_fyi("Accepting contact request from activity centre")
self.home_2.chats_tab.click() self.home_2.chats_tab.click()
self.home_2.handle_contact_request(self.default_username_1) self.home_2.handle_contact_request(self.default_username_1)
self.profile_1.just_fyi("Sending message to contact via Profile > Contacts > Send message") self.profile_1.just_fyi("Sending message to contact via Profile > Contacts > Send message")
self.chat_1.profile_send_message.click() self.home_1.chats_tab.click()
self.chat_1 = self.home_1.get_chat(self.default_username_2).click()
self.chat_1.send_message('hey') self.chat_1.send_message('hey')
self.home_2.click_system_back_button_until_element_is_shown() self.home_2.click_system_back_button_until_element_is_shown()
self.chat_2 = self.home_2.get_chat(self.default_username_1).click() self.chat_2 = self.home_2.get_chat(self.default_username_1).click()

View File

@ -232,13 +232,6 @@ class TestActivityCenterMultipleDevicePR(MultipleSharedDeviceTestCase):
if indicator.is_element_displayed(): if indicator.is_element_displayed():
self.errors.append("Unread indicator on contacts tab or on activity center is shown after declining contact request!") self.errors.append("Unread indicator on contacts tab or on activity center is shown after declining contact request!")
self.device_1.just_fyi("Device 2: remove device1 from Contact list")
self.home_2.contacts_tab.click()
self.home_2.contact_details(self.default_username_1).click()
self.home_2.element_by_translation_id("remove-from-contacts").click()
if not self.home_2.element_by_translation_id("no-contacts").is_element_displayed(30):
self.errors.append("Contact was not removed from contact list")
self.errors.verify_no_errors() self.errors.verify_no_errors()
@marks.testrail_id(702851) @marks.testrail_id(702851)