-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: 8735 research appium upgrading app version (#8896)
## **Description** <!-- Write a short description of the changes included in this pull request, also include relevant motivation and context. Have in mind the following questions: 1. What is the reason for the change? 2. What is the improvement/solution? --> ## **Related issues** Fixes: ## **Manual testing steps** 1. Go to this page... 2. 3. ## **Screenshots/Recordings** https://app.bitrise.io/app/be69d4368ee7e86d/pipelines/d01b2c5b-7295-4aba-bd80-9abb4c7939ae ### **Before** <!-- [screenshots/recordings] --> ### **After** <!-- [screenshots/recordings] --> ## **Pre-merge author checklist** - [ ] I’ve followed [MetaMask Coding Standards](https://github.com/MetaMask/metamask-mobile/blob/main/.github/guidelines/CODING_GUIDELINES.md). - [ ] I've clearly explained what problem this PR is solving and how it is solved. - [ ] I've linked related issues - [ ] I've included manual testing steps - [ ] I've included screenshots/recordings if applicable - [ ] I’ve included tests if applicable - [ ] I’ve documented my code using [JSDoc](https://jsdoc.app/) format if applicable - [ ] I’ve applied the right labels on the PR (see [labeling guidelines](https://github.com/MetaMask/metamask-mobile/blob/main/.github/guidelines/LABELING_GUIDELINES.md)). Not required for external contributors. - [ ] I’ve properly set the pull request status: - [ ] In case it's not yet "ready for review", I've set it to "draft". - [ ] In case it's "ready for review", I've changed it from "draft" to "non-draft". ## **Pre-merge reviewer checklist** - [ ] I've manually tested the PR (e.g. pull and build branch, run the app, test code being changed). - [ ] I confirm that this PR addresses all acceptance criteria described in the ticket it closes and includes the necessary testing evidence such as recordings and or screenshots. --------- Co-authored-by: Cal Leung <[email protected]>
- Loading branch information
1 parent
060ff00
commit 66821fd
Showing
10 changed files
with
109 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
@androidApp | ||
@upgrade | ||
@fixturesSkipOnboarding | ||
Feature: Measure the app launch times for warm starts | ||
|
||
Scenario: Measure warm start launch time after importing a wallet | ||
Given the app displayed the splash animation | ||
And I have imported my wallet | ||
And I tap No Thanks on the Enable security check screen | ||
And I tap No thanks on the onboarding welcome tutorial | ||
And I close the Whats New modal | ||
And I am on the wallet view | ||
When I tap on the Settings tab option | ||
And I scroll up | ||
And In settings I tap on "About MetaMask" | ||
Then version "PRODUCTION_BUILD_STRING" is displayed for app upgrade step | ||
When I install upgrade the app | ||
And I relaunch the app | ||
And the splash animation completes | ||
And I fill my password in the Login screen | ||
And I log into my wallet | ||
And I tap on the Settings tab option | ||
And In settings I tap on "About MetaMask" | ||
Then version "NEW_BUILD_STRING" is displayed for app upgrade step | ||
And removed test app |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1 @@ | ||
export const GENERAL_SETTINGS = 'general-settings'; | ||
export const SECURITY_SETTINGS = 'security-settings'; | ||
export const ADVANCED_SETTINGS = 'advanced-settings'; | ||
export const CONTACTS_SETTINGS = 'contacts-settings'; | ||
export const NETWORKS_SETTINGS = 'networks-settings'; | ||
export const ON_RAMP_SETTINGS = 'on-ramp-settings'; | ||
export const EXPERIMENTAL_SETTINGS = 'experimental-settings'; | ||
export const ABOUT_METAMASK_SETTINGS = 'about-metamask-settings'; | ||
export const REQUEST_SETTINGS = 'request-settings'; | ||
export const CONTACT_SETTINGS = 'contact-settings'; | ||
export const LOCK_SETTINGS = 'lock-settings'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters