fixes nightly e2e

Signed-off-by: Churikova Tetiana <churikova.tm@gmail.com>
This commit is contained in:
Churikova Tetiana 2020-06-25 10:14:17 +02:00
parent ddcb1fa54a
commit 5362ceb31f
No known key found for this signature in database
GPG Key ID: 0D4EA7B33B47E6D8
2 changed files with 8 additions and 8 deletions

View File

@ -139,7 +139,7 @@ class TestWalletManagement(SingleDeviceTestCase):
profile.switch_network('Mainnet with upstream RPC')
wallet = sign_in.wallet_button.click()
wallet.set_up_wallet()
assets = ['CryptoKitties', 'CryptoStrikers', 'EtheremonAsset']
assets = ['CryptoKitties', 'CryptoStrikers']
for asset in assets:
wallet.select_asset(asset)
wallet.accounts_status_account.click()

View File

@ -240,8 +240,10 @@ class TestCommandsMultipleDevices(MultipleDeviceTestCase):
chat_2_receiver_message = chat_2.chat_element_by_text('↓ Incoming transaction')
chat_2_receiver_message.decline_transaction.click()
for message in chat_1_sender_message, chat_2_receiver_message:
if not message.contains_text('Transaction declined' ,20):
self.errors.append('Message status is not updated to "Transaction declined"')
if not message.contains_text('Transaction declined', 20):
self.errors.append('Message status is not updated to "Transaction declined" for transaction before '
'sharing address')
home_1.just_fyi('Decline transaction request and check that state is changed')
chat_1.commands_button.click()
request_amount = chat_1.get_unique_amount()
@ -252,11 +254,9 @@ class TestCommandsMultipleDevices(MultipleDeviceTestCase):
chat_1_request_message = chat_1.chat_element_by_text('↓ Incoming transaction')
chat_2_sender_message = chat_2.chat_element_by_text('↑ Outgoing transaction')
chat_2_sender_message.decline_transaction.click()
chat_1.element_by_text_part('Transaction declined').wait_for_element(20)
for status in chat_2_sender_message.transaction_status.text, chat_1_request_message.transaction_status.text:
if status != 'Transaction declined':
self.errors.append('Wrong state is shown: "Transaction declined" is expected, in fact'
' %s ' % status)
for message in chat_2_sender_message, chat_1_request_message:
if not message.contains_text('Transaction declined', 20):
self.errors.append('Message status is not updated to "Transaction declined" for transaction request')
self.errors.verify_no_errors()