WIP: Product pages update
- Plus page contents
- Pro page contents
- Nodes page contents
- Upgrades page contents update
- Pay page contents
- Rewards page contents
- Token page contents
- Boost page contents
- Footer layout and style update (desktop and mobile, light and dark)
- Style 3 foundations (desktop and mobile, light and dark)
- Style 4 foundations (desktop and mobile, light and dark)
- Style Tail foundations (desktop and mobile, light and dark)
- Plus page assets
- Pro page assets
- Nodes page assets
- Pay page assets
- Rewards page assets
- Token page assets
- Boost page assets
- Style 3 decoration
- Style 4 decoration
- Style tail separators
- Nodes page actions
- Pay page actions
- Rewards page actions
- Boost page actions
- Rewards page dynamic values
- Buy token component
- E2E Tests for product pages
- Review footer link destinations
- Final Boost page content (follow up #2037)
Issues
changed milestone to %Pro Beta #release
added scoped label
changed the description 2 times within 4 minutes
added 4 commits
-
9142411a...66944378 - 3 commits from branch
master
- 70df5d64 - Merge remote-tracking branch 'origin/master' into goal/product-pages-update-1
-
9142411a...66944378 - 3 commits from branch
marked the task Pay page contents as completed
marked the task Rewards page contents as completed
marked the task Token page contents as completed
added 6h of time spent at 2019-10-21
removed time spent
changed the description
changed the description
added 2 commits
marked the task Style 3 decoration as completed
marked the task Style 4 decoration as completed
marked the task Style tail separators as completed
marked the task Boost page contents as completed
marked the task Boost page assets as completed
added 3 commits
-
6b5ad0bc...5e3c86ef - 2 commits from branch
master
- d2649b1e - Merge remote-tracking branch 'origin/master' into goal/product-pages-update-1
-
6b5ad0bc...5e3c86ef - 2 commits from branch
changed the description
added 1 commit
- c57609f8 - (fix): Correct shadows in UX sample images on product pages
marked the task Nodes page actions as completed
marked the task Pay page actions as completed
marked the task Rewards page actions as completed
marked the task Boost page actions as completed
marked the task Rewards page dynamic values as completed
added 5 commits
-
49345cb7...d66805df - 4 commits from branch
master
- 7e932b8b - Merge remote-tracking branch 'origin/master' into goal/product-pages-update-1
-
49345cb7...d66805df - 4 commits from branch
added 1 commit
- 46094e5c - (feat): Re-introduce the ability to buy tokens
marked the task Buy token component as completed
added 3 commits
-
46094e5c...80069206 - 2 commits from branch
master
- 4fe4cdd1 - Merge remote-tracking branch 'origin/master' into goal/product-pages-update-1
-
46094e5c...80069206 - 2 commits from branch
changed the description
55 cy.get(anyBuyTokensModal).should('be.visible'); 56 }); 57 58 it('should have the ability to trigger Buy Eth modal', () => { 59 const buyEthLink = 60 'm-blockchain--purchase .m-blockchainTokenPurchase__ethRate a'; 61 const buyEthModal = 'm-blockchain__eth-modal .m-modal-container'; 62 63 cy.get(buyEthLink).click(); 64 65 cy.get(buyEthModal).should('be.visible'); 66 }); 67 68 it('should navigate to Plus and trigger a Wire', () => { 69 const upgradeButton = cy.get( 70 '.mf-button.m-upgradesUpgradeOptionsPlan__action:eq(0)' - Developer
Might be best to change this and the other selectors used here, to a contains or a data-attribute. Unsure what its actually referencing so may be an exception to the rule but indexed selection is our enemy, as it'll break more easily.