Skip to content

Commit

Permalink
final e2e fix
Browse files Browse the repository at this point in the history
  • Loading branch information
antdanchenko committed Jun 12, 2019
1 parent 5a6e726 commit 17ad9c4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
1 change: 1 addition & 0 deletions test/appium/tests/atomic/chats/test_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ def test_network_mismatch_for_send_request_commands(self):

@marks.testrail_id(5306)
@marks.critical
@marks.skip
def test_send_eth_in_1_1_chat(self):
recipient = transaction_recipients['A']
sender = transaction_senders['A']
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,8 @@ def test_sign_message_from_daap(self):
status_test_dapp.transactions_button.click()
send_transaction_view = status_test_dapp.sign_message_button.click()
send_transaction_view.find_full_text('Test message')
send_transaction_view.sign_transaction_button.click_until_presence_of_element(
send_transaction_view.enter_password_input)
send_transaction_view.enter_password_input.send_keys(password)
send_transaction_view.sign_transaction_button.click()
send_transaction_view.sign_button.click()

@marks.testrail_id(5333)
@marks.critical
Expand Down Expand Up @@ -72,7 +70,7 @@ def test_sign_typed_message(self):
status_test_dapp.transactions_button.click()
send_transaction_view = status_test_dapp.sign_typed_message_button.click()
send_transaction_view.enter_password_input.send_keys(common_password)
send_transaction_view.sign_transaction_button.click()
send_transaction_view.sign_button.click()
status_test_dapp.find_text_part('0xde3048417e5881acc9ca8466ab0b3e2f9f965a70acabbda2d140e95a28b13d2d'
'2d38eba6c0a5bfdc50e5d59e0ed3226c749732fd4a9374b57f34121eaff2a5081c')

Expand Down Expand Up @@ -145,7 +143,7 @@ def test_logcat_sign_message_from_daap(self):
send_transaction_view.sign_transaction_button.click_until_presence_of_element(
send_transaction_view.enter_password_input)
send_transaction_view.enter_password_input.send_keys(unique_password)
send_transaction_view.sign_transaction_button.click()
send_transaction_view.sign_button.click()
send_transaction_view.check_no_values_in_logcat(password=unique_password)

@marks.testrail_id(5372)
Expand Down
1 change: 1 addition & 0 deletions test/appium/tests/atomic/transactions/test_wallet.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,7 @@ def test_insufficient_funds_wallet_positive_balance(self):

@marks.testrail_id(5359)
@marks.critical
@marks.skip
def test_modify_transaction_fee_values(self):
sender = transaction_senders['U']
sign_in_view = SignInView(self.driver)
Expand Down

0 comments on commit 17ad9c4

Please sign in to comment.