> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Method name: siteEcom.navigateToCartPage() # Method Link: https://dev.wix.com/docs/sdk/frontend-modules/ecom/navigate-to-cart-page.md # Method Description: Directs the browser to navigate to the site visitor's Cart Page. The `navigateToCartPage()` method returns a Promise that resolves when the browser successfully navigates to the [Cart Page](https://support.wix.com/en/article/customizing-the-cart-page). # Method Permissions: # Method Permissions Scopes IDs: undefined # Method Code Examples: ## Navigate to the cart page ```javascript import { ecom } from "@wix/site-ecom"; import { addToCart } from 'backend/addToCart'; $w('#myNavigateToCartPageButton').onClick(async () => { // Example values for the options object const options = { lineItems: [{ catalogReference: { // Wix Stores appId appId: '215238eb-22a5-4c36-9e7b-e7c08025e04e', // Wix Stores productId catalogItemId: '3fb6a3c8-988b-8755-04bd-5c59ae0b18ea', }, quantity: 1 }] }; try { // addToCart() is defined by you in a backend file // that calls currentCard.addToCurrentCart from the // backend ecom SDK module. await addToCart(options); console.log('Item added to cart'); // Navigate to cart page after adding item await ecom.navigateToCartPage(); } catch (error) { console.error(error); // Handle the error } }); ```