Skip to content

Commit ea414b4

Browse files
pavloburykhyqrashawn
authored andcommitted
e2e:fix
1 parent 1553e0a commit ea414b4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/appium/tests/activity_center/test_activity_center.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def test_add_contact_field_validation(self):
145145
self.device_2.create_user(third_user=True, username=new_username_2)
146146

147147
self.device_2.just_fyi('Device2 sends a contact request to Device1 using his profile link')
148-
self.home_2.driver.set_clipboard_text("https://status.app/u/" + self.public_key_1)
148+
self.home_2.driver.set_clipboard_text("https://status.app/u#" + self.public_key_1)
149149
self.home_2.chats_tab.click()
150150
self.home_2.new_chat_button.click_until_presence_of_element(self.home_2.add_a_contact_chat_bottom_sheet_button)
151151
self.home_2.add_a_contact_chat_bottom_sheet_button.click()

test/appium/views/home_view.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -564,4 +564,4 @@ def get_public_key_via_share_profile_tab(self):
564564
self.link_to_profile_text.click()
565565
c_text = self.driver.get_clipboard_text()
566566
self.click_system_back_button()
567-
return c_text.split("/")[-1]
567+
return c_text.split("#")[-1]

0 commit comments

Comments
 (0)