diff --git a/app/components/Views/BrowserTab/index.js b/app/components/Views/BrowserTab/index.js index 2ba823c511e..501058acb1d 100644 --- a/app/components/Views/BrowserTab/index.js +++ b/app/components/Views/BrowserTab/index.js @@ -113,7 +113,8 @@ import handleWebViewFocus from '../../../util/browser/webViewFocus'; import { isTest } from '../../../util/test/utils.js'; import { EXTERNAL_LINK_TYPE } from '../../../constants/browser'; -const { HOMEPAGE_URL, NOTIFICATION_NAMES } = AppConstants; +const { HOMEPAGE_URL, NOTIFICATION_NAMES, OLD_HOMEPAGE_URL_HOST } = + AppConstants; const HOMEPAGE_HOST = new URL(HOMEPAGE_URL)?.hostname; const MM_MIXPANEL_TOKEN = process.env.MM_MIXPANEL_TOKEN; @@ -363,7 +364,9 @@ export const BrowserTab = (props) => { const currentPage = checkUrl || url.current; const prefixedUrl = prefixUrlWithProtocol(currentPage); const { host: currentHost } = getUrlObj(prefixedUrl); - return currentHost === HOMEPAGE_HOST; + return ( + currentHost === HOMEPAGE_HOST || currentHost === OLD_HOMEPAGE_URL_HOST + ); }, []); const notifyAllConnections = useCallback((payload, restricted = true) => { diff --git a/app/core/AppConstants.ts b/app/core/AppConstants.ts index 09629b44e22..e9a3ee64d44 100644 --- a/app/core/AppConstants.ts +++ b/app/core/AppConstants.ts @@ -40,7 +40,10 @@ export default { MM_UNIVERSAL_LINK_HOST: 'metamask.app.link', MM_DEEP_ITMS_APP_LINK: 'https://metamask.app.link/skAH3BaF99', SAI_ADDRESS: '0x89d24A6b4CcB1B6fAA2625fE562bDD9a23260359', - HOMEPAGE_URL: process.env.MM_HOMEPAGE || 'https://home.metamask.io/', + HOMEPAGE_URL: + process.env.MM_HOMEPAGE || + 'https://portfolio.metamask.io/explore?MetaMaskEntry=mobile/', + OLD_HOMEPAGE_URL_HOST: 'home.metamask.io', SHORT_HOMEPAGE_URL: 'MetaMask.io', ZERO_ADDRESS: '0x0000000000000000000000000000000000000000', USER_AGENT: Device.isAndroid() diff --git a/app/util/browser/index.test.ts b/app/util/browser/index.test.ts index ecc6ac7d95a..42bac963a0d 100644 --- a/app/util/browser/index.test.ts +++ b/app/util/browser/index.test.ts @@ -207,7 +207,7 @@ describe('Browser utils :: trustedProtocolToDeeplink', () => { expect(trustedProtocolToDeeplink.includes(protocol)).toBeTruthy(); }); it('should match metamask: protocol', () => { - const { protocol } = new URL('metamask://dapp/home.metamask.io'); + const { protocol } = new URL('metamask://dapp/portfolio.metamask.io'); expect(trustedProtocolToDeeplink.includes(protocol)).toBeTruthy(); }); @@ -217,27 +217,27 @@ describe('Browser utils :: trustedProtocolToDeeplink', () => { expect(trustedProtocolToDeeplink.includes(protocol)).toBeTruthy(); }); it('should match dapp: protocol', () => { - const { protocol } = new URL('dapp://home.metamask.io'); + const { protocol } = new URL('dapp://portfolio.metamask.io'); expect(trustedProtocolToDeeplink.includes(protocol)).toBeTruthy(); }); it('should not match eth: protocol', () => { - const { protocol } = new URL('eth://home.metamask.io'); + const { protocol } = new URL('eth://portfolio.metamask.io'); expect(trustedProtocolToDeeplink.includes(protocol)).toBeFalsy(); }); it('should not match tel: protocol', () => { - const { protocol } = new URL('tel://home.metamask.io'); + const { protocol } = new URL('tel://portfolio.metamask.io'); expect(trustedProtocolToDeeplink.includes(protocol)).toBeFalsy(); }); it('should not match mailto: protocol', () => { - const { protocol } = new URL('mailto://home.metamask.io'); + const { protocol } = new URL('mailto://portfolio.metamask.io'); expect(trustedProtocolToDeeplink.includes(protocol)).toBeFalsy(); }); it('should not match ldap: protocol', () => { - const { protocol } = new URL('ldap://home.metamask.io'); + const { protocol } = new URL('ldap://portfolio.metamask.io'); expect(trustedProtocolToDeeplink.includes(protocol)).toBeFalsy(); }); diff --git a/e2e/fixtures/fixture-builder.js b/e2e/fixtures/fixture-builder.js index 471cb7f950f..374b63e76fb 100644 --- a/e2e/fixtures/fixture-builder.js +++ b/e2e/fixtures/fixture-builder.js @@ -380,7 +380,7 @@ class FixtureBuilder { whitelist: [], tabs: [ { - url: 'https://home.metamask.io/', + url: 'https://portfolio.metamask.io/explore?MetaMaskEntry=mobile/', id: 1692550481062, }, ], diff --git a/e2e/specs/browser/browser-tests.spec.js b/e2e/specs/browser/browser-tests.spec.js index 07361e61440..65df03117b1 100644 --- a/e2e/specs/browser/browser-tests.spec.js +++ b/e2e/specs/browser/browser-tests.spec.js @@ -53,27 +53,27 @@ describe(SmokeCore('Browser Tests'), () => { await Browser.waitForBrowserPageToLoad(); }); - it('should add the test dapp to favorites', async () => { - // Check that we are still on the browser screen + // it('should add the test dapp to favorites', async () => { + // // Check that we are still on the browser screen - // Tap on options - await Browser.tapOptionsButton(); - await Browser.tapAddToFavoritesButton(); + // // Tap on options + // await Browser.tapOptionsButton(); + // await Browser.tapAddToFavoritesButton(); - await Assertions.checkIfVisible(AddBookmarkView.container); + // await Assertions.checkIfVisible(AddBookmarkView.container); - await AddBookmarkView.tapAddBookmarksButton(); - await Assertions.checkIfNotVisible(AddBookmarkView.container); - }); + // await AddBookmarkView.tapAddBookmarksButton(); + // await Assertions.checkIfNotVisible(AddBookmarkView.container); + // }); - it('should tap on the test dapp in favorites on the home page', async () => { - await Browser.tapHomeButton(); - // Wait for page to load - await TestHelpers.delay(3000); - await Browser.tapDappInFavorites(); - await Assertions.checkIfTextIsDisplayed('metamask.github.io'); - // } - }); + // it('should tap on the test dapp in favorites on the home page', async () => { + // await Browser.tapHomeButton(); + // // Wait for page to load + // await TestHelpers.delay(3000); + // await Browser.tapDappInFavorites(); + // await Assertions.checkIfTextIsDisplayed('metamask.github.io'); + // // } + // }); it('should test invalid URL', async () => { await TestHelpers.delay(2000); diff --git a/wdio/features/BrowserFlow/AddFavorite.feature b/wdio/features/BrowserFlow/AddFavorite.feature index 60bfd4c7329..106cc46e446 100644 --- a/wdio/features/BrowserFlow/AddFavorite.feature +++ b/wdio/features/BrowserFlow/AddFavorite.feature @@ -4,7 +4,7 @@ Feature: Browser Add Favorite Scenario: Adding browser Favorites - Add, click and delete favorites. Display favorites in the Favorites tab of home.metamask.io + Add, click and delete favorites. Display favorites in the Favorites tab of portfolio.metamask.io Given the app displayed the splash animation And I have imported my wallet @@ -22,7 +22,7 @@ Feature: Browser Add Favorite And Url field is pre populated with "https://app.uniswap.org/" When I tap on "Cancel" on the Add Favorite Screen Then the "https://app.uniswap.org/" is displayed in the browser tab - And the favorite is not added on the home "https://home.metamask.io" page + And the favorite is not added on the home "https://portfolio.metamask.io/explore?MetaMaskEntry=mobile" page When I navigate to "https://uniswap.exchange" And I tap on browser control menu icon on the bottom right of the browser view And I tap the "Add to Favorites" option on the Option Menu diff --git a/wdio/features/BrowserFlow/AddressBar.feature b/wdio/features/BrowserFlow/AddressBar.feature index 0c896b35592..f8beb0f624a 100644 --- a/wdio/features/BrowserFlow/AddressBar.feature +++ b/wdio/features/BrowserFlow/AddressBar.feature @@ -13,12 +13,12 @@ Feature: Browser Address Bar And I have 1 browser tab displayed When I tap on address bar Then browser address view is displayed - And the "https://home.metamask.io/" url is displayed in address field + And the "https://portfolio.metamask.io/explore?MetaMaskEntry=mobile/" url is displayed in address field When I tap on "clear icon" in address field Then address field is cleared When I tap on "Cancel button" in address field Then browser address bar input view is no longer displayed - And the browser view is on the "https://home.metamask.io/" website + And the browser view is on the "https://portfolio.metamask.io/explore?MetaMaskEntry=mobile/" website When I tap on address bar And I navigate to "reddit.com" Then the browser view is on the "https://www.reddit.com/" website diff --git a/wdio/features/BrowserFlow/InvalidURL.feature b/wdio/features/BrowserFlow/InvalidURL.feature index 23e27aaed84..2079b53c069 100644 --- a/wdio/features/BrowserFlow/InvalidURL.feature +++ b/wdio/features/BrowserFlow/InvalidURL.feature @@ -13,4 +13,4 @@ Feature: Browser Invalid URL Then I should see "Something went wrong" error title And I should see "We couldn't load that page" error message When I tap on the Return button from the error page - Then the browser view is on the "https://home.metamask.io/" website + Then the browser view is on the "https://portfolio.metamask.io/explore?MetaMaskEntry=mobile/" website diff --git a/wdio/features/BrowserFlow/NavigationControls.feature b/wdio/features/BrowserFlow/NavigationControls.feature index 0f60d66bdb2..370145f8472 100644 --- a/wdio/features/BrowserFlow/NavigationControls.feature +++ b/wdio/features/BrowserFlow/NavigationControls.feature @@ -16,7 +16,7 @@ Feature: Browser Control Options When I navigate to "reddit.com" Then the browser view is on the "https://www.reddit.com/" website And I tap on the back arrow control button - Then the browser view is on the "https://home.metamask.io/" website + Then the browser view is on the "https://portfolio.metamask.io/explore?MetaMaskEntry=mobile/" website When I tap on browser tab button with count 1 Then multi browser tab view is displayed When I tap on "Add" button on multi browser tab view diff --git a/wdio/features/BrowserFlow/OptionMenu.feature b/wdio/features/BrowserFlow/OptionMenu.feature index 2da183e7b0d..4e11df6debd 100644 --- a/wdio/features/BrowserFlow/OptionMenu.feature +++ b/wdio/features/BrowserFlow/OptionMenu.feature @@ -41,4 +41,4 @@ Feature: Browser Options Menu And "New tab" option item is displayed in browser options menu When I tap the "New Tab" option on the Option Menu Then new browser tab is added - #And the browser view is on the "https://home.metamask.io/" website + #And the browser view is on the "https://portfolio.metamask.io/explore?MetaMaskEntry=mobile/" website diff --git a/wdio/features/BrowserFlow/PhishingDetection.feature b/wdio/features/BrowserFlow/PhishingDetection.feature index 9bea18e0f3d..43d03a4ec0b 100644 --- a/wdio/features/BrowserFlow/PhishingDetection.feature +++ b/wdio/features/BrowserFlow/PhishingDetection.feature @@ -14,4 +14,4 @@ Feature: Browser Phishing Detection When I navigate to "http://www.empowr.com/FanFeed/Home.aspx" Then I should see a warning screen with Ethereum Phishing Detection title When I tap the Back button on Phishing Detection page - And the browser view is on the "https://home.metamask.io/" website + And the browser view is on the "https://portfolio.metamask.io/explore?MetaMaskEntry=mobile/" website diff --git a/wdio/screen-objects/testIDs/BrowserScreen/AddressBar.testIds.js b/wdio/screen-objects/testIDs/BrowserScreen/AddressBar.testIds.js index 771cc75cee1..9786dcb5645 100644 --- a/wdio/screen-objects/testIDs/BrowserScreen/AddressBar.testIds.js +++ b/wdio/screen-objects/testIDs/BrowserScreen/AddressBar.testIds.js @@ -4,6 +4,6 @@ export const CANCEL_BUTTON_ON_BROWSER_ID = 'cancel-url-button'; export const UNISWAP_SUGGESTION = 'https://uniswap.exchange/'; -export const HOME_SUGGESTION = 'https://home.metamask.io/'; +export const HOME_SUGGESTION = 'https://portfolio.metamask.io/explore?MetaMaskEntry=mobile/'; export const URL_CLEAR_ICON = 'url-clear-icon'; diff --git a/wdio/step-definitions/browser-steps.js b/wdio/step-definitions/browser-steps.js index 12b11d316c1..8d6f55473bf 100644 --- a/wdio/step-definitions/browser-steps.js +++ b/wdio/step-definitions/browser-steps.js @@ -22,7 +22,7 @@ const TEST_DAPP = 'https://metamask.github.io/test-dapp/'; Given(/^I am on Home MetaMask website$/, async () => { await ExternalWebsitesScreen.isHomeFavoriteButtonDisplayed(); await BrowserScreen.tapUrlBar(); - await AddressBarScreen.isUrlValueContains('https://home.metamask.io/'); + await AddressBarScreen.isUrlValueContains('https://portfolio.metamask.io/explore?MetaMaskEntry=mobile/'); await AddressBarScreen.tapUrlCancelButton(); });