diff --git a/test/appium/tests/atomic/account_management/test_create_account.py b/test/appium/tests/atomic/account_management/test_create_account.py index d467591e90..3f522d261e 100644 --- a/test/appium/tests/atomic/account_management/test_create_account.py +++ b/test/appium/tests/atomic/account_management/test_create_account.py @@ -56,8 +56,7 @@ class TestCreateAccount(SingleDeviceTestCase): self.errors.append("'%s' text is not shown" % text) home.profile_button.click() home.home_button.click() - text = ('There are no recent Chats or DApps here yet. ' - 'Tap the “Plus” button to see the list of Dapps or discover people to chat with.') + text = 'Your Home screen will house your recent chats and DApp history. Tap the plus (+) button to get started.' if not home.element_by_text(text).is_element_displayed(): self.errors.append("'%s' text is not shown" % text) self.verify_no_errors() diff --git a/test/appium/tests/atomic/account_management/test_profile.py b/test/appium/tests/atomic/account_management/test_profile.py index 92879d9963..380b68c8ff 100644 --- a/test/appium/tests/atomic/account_management/test_profile.py +++ b/test/appium/tests/atomic/account_management/test_profile.py @@ -144,6 +144,7 @@ class TestProfileSingleDevice(SingleDeviceTestCase): profile_view.advanced_button.click() profile_view.find_text_part('CUSTOM_ROPSTEN') + @marks.logcat @marks.testrail_id(3774) def test_logcat_backup_recovery_phrase(self): sign_in_view = SignInView(self.driver) diff --git a/test/appium/tests/atomic/account_management/test_wallet_management.py b/test/appium/tests/atomic/account_management/test_wallet_management.py index 2f386a8b32..4f523b1ff6 100644 --- a/test/appium/tests/atomic/account_management/test_wallet_management.py +++ b/test/appium/tests/atomic/account_management/test_wallet_management.py @@ -19,9 +19,10 @@ class TestWalletManagement(SingleDeviceTestCase): if not wallet.element_by_text(text).is_element_displayed(): self.errors.append("'%s' is not displayed" % text) wallet.set_up_button.click() - text = ('This is your personal transaction phrase that you’ll use everytime you make a transaction. ' - 'Make sure to write it down on a piece of paper, store it somewhere, ' - 'and only confirm transactions when you see these three words.') + text = ("To increase security, we'll show you this phrase each time you initiate a transaction. " + "When you see then you'll know it's safe to proceed. \n\n" + "Memorize or store these words in a secure location. Only confirm transactions if you see them first.") + if not wallet.element_by_text(text).is_element_displayed(): self.errors.append("'%s' text is not displayed" % text) phrase_length = len(wallet.sign_in_phrase.list) diff --git a/test/appium/views/elements_templates/sauce_logo.png b/test/appium/views/elements_templates/sauce_logo.png index 0edf863e83..a485a46c15 100644 Binary files a/test/appium/views/elements_templates/sauce_logo.png and b/test/appium/views/elements_templates/sauce_logo.png differ