Skip to content

Commit 0f7df6b

Browse files
pavloburykhyqrashawn
authored andcommitted
e2e:fix
1 parent c276ddd commit 0f7df6b

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
@@ -559,4 +559,4 @@ def get_public_key_via_share_profile_tab(self):
559559
self.link_to_profile_text.click()
560560
c_text = self.driver.get_clipboard_text()
561561
self.click_system_back_button()
562-
return c_text.split("/")[-1]
562+
return c_text.split("#")[-1]

0 commit comments

Comments
 (0)