e2e: fixes 21.05
This commit is contained in:
parent
b3361b7d89
commit
a480df4ef5
|
@ -74,6 +74,8 @@ class TestGroupChatMultipleDeviceMergedNewUI(MultipleSharedDeviceTestCase):
|
||||||
self.chats[0].send_message(self.message_before_adding)
|
self.chats[0].send_message(self.message_before_adding)
|
||||||
|
|
||||||
@marks.testrail_id(702807)
|
@marks.testrail_id(702807)
|
||||||
|
@marks.xfail(
|
||||||
|
reason="Issue with a message status - Sent instead of Delivered, https://github.com/status-im/status-mobile/issues/20126")
|
||||||
def test_group_chat_join_send_text_messages_push(self):
|
def test_group_chat_join_send_text_messages_push(self):
|
||||||
message_to_admin = self.message_to_admin
|
message_to_admin = self.message_to_admin
|
||||||
[self.homes[i].navigate_back_to_home_view() for i in range(3)]
|
[self.homes[i].navigate_back_to_home_view() for i in range(3)]
|
||||||
|
|
|
@ -116,6 +116,7 @@ class TestWalletMultipleDevice(MultipleSharedDeviceTestCase):
|
||||||
|
|
||||||
@marks.testrail_id(727230)
|
@marks.testrail_id(727230)
|
||||||
def test_wallet_send_asset_from_drawer(self):
|
def test_wallet_send_asset_from_drawer(self):
|
||||||
|
self.wallet_view.navigate_back_to_wallet_view()
|
||||||
sender_balance, receiver_balance, eth_amount_sender, eth_amount_receiver = self._get_balances_before_tx()
|
sender_balance, receiver_balance, eth_amount_sender, eth_amount_receiver = self._get_balances_before_tx()
|
||||||
self.wallet_2.close_account_button.click()
|
self.wallet_2.close_account_button.click()
|
||||||
self.wallet_2.chats_tab.click()
|
self.wallet_2.chats_tab.click()
|
||||||
|
@ -208,10 +209,10 @@ class TestWalletOneDevice(MultipleSharedDeviceTestCase):
|
||||||
self.errors.append("Can't swipe between accounts, account to watch is not shown")
|
self.errors.append("Can't swipe between accounts, account to watch is not shown")
|
||||||
else:
|
else:
|
||||||
shown_address = self.home_view.copy_wallet_address()
|
shown_address = self.home_view.copy_wallet_address()
|
||||||
if set(shown_address.split(':')) != {'eth', 'arb1', 'opt', address_to_watch}:
|
if set(shown_address.split(':')) != {'eth', 'arb1', 'oeth', address_to_watch}:
|
||||||
self.home_view.driver.fail(
|
self.home_view.driver.fail(
|
||||||
"Incorrect address '%s' is shown when swiping between accounts, expected one is '%s'" % (
|
"Incorrect address '%s' is shown when swiping between accounts, expected one is '%s'" % (
|
||||||
shown_address, ':'.join(address_to_watch)))
|
shown_address, address_to_watch))
|
||||||
self.home_view.click_system_back_button()
|
self.home_view.click_system_back_button()
|
||||||
|
|
||||||
self.wallet_view.just_fyi("Removing account to watch")
|
self.wallet_view.just_fyi("Removing account to watch")
|
||||||
|
|
Loading…
Reference in New Issue