Skip to content

Commit

Permalink
Fix for ETHro asset in wallet
Browse files Browse the repository at this point in the history
  • Loading branch information
churik committed Mar 28, 2019
1 parent d1bac6e commit 346e9a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/appium/views/wallet_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ def asset_checkbox_by_name(self, asset_name):
def send_transaction(self, **kwargs):
send_transaction_view = self.send_transaction_button.click()
send_transaction_view.select_asset_button.click()
asset_name = kwargs.get('asset_name', 'ETHro')
asset_name = kwargs.get('asset_name', 'ETHro').upper()
asset_button = send_transaction_view.asset_by_name(asset_name)
send_transaction_view.select_asset_button.click_until_presence_of_element(asset_button)
asset_button.click()
Expand Down

0 comments on commit 346e9a9

Please sign in to comment.