Run 2 summary

https://www.wildberries.ru/catalog/113256091/detail.aspx

Tested 2025-04-03 00:29:09 using Chrome 134.0.6998.35 (runtime settings).

SummaryWaterfall MetricsFilmstrip CoachPageXrayCPU Third partyScreenshotsaxe

Summary

MetricValue
Page metrics
Performance score60
Total page size1.4 MB
Requests79
Timing metrics
TTFB783 ms
First Paint3.216 s
Fully Loaded13.521 s
Google Web Vitals
TTFB783 ms
First Contentful Paint (FCP) 3.216 s
Largest Contentful Paint (LCP) 4.636 s
Cumulative Layout Shift (CLS) 0.08
Total Blocking Time879 ms
Max Potential FID852 ms
CPU metrics
CPU long tasks3
CPU last long task happens at8.736 s
Visual Metrics
First Visual Change3.233 s
Speed Index5.485 s
Visual Complete 85%5.200 s
Visual Complete 99%11.933 s
Last Visual Change12.033 s
Screenshot
| Waterfall | | Download HAR | 

Waterfall

| Filmstrip | 

Filmstrip

Use--filmstrip.showAll to show all filmstrips.

0 s
3.3 sFirst Contentful Paint 3.216 sFirst Visual Change 3.233 s
3.4 s
3.5 s
3.6 s
3.7 s
3.8 s
3.9 s
4 s
4.1 s
4.2 s
4.3 s
4.4 s
4.5 s
4.6 sCPU Long Task duration 65 ms
4.7 sDOM Content Loaded Time 4.621 sLCP <HEADER> 4.636 s
4.8 s
4.9 s
5 s
5.1 s
5.2 sVisual Complete 85% 5.200 s
5.3 s
5.4 s
5.5 s
5.6 s
5.7 s
5.8 s
5.9 s
6 sPage Load Time 5.978 s
6.1 s
6.2 s
6.3 s
6.4 s
6.5 sCPU Long Task duration 852 ms
7.4 sLayout Shift 0.07583 7.391 sVisual Complete 95% 7.400 s
7.5 s
7.6 s
7.7 s
7.8 s
7.9 s
8 s
8.1 s
8.2 s
8.3 s
8.4 s
8.5 s
8.6 s
8.7 s
8.8 sCPU Long Task duration 112 ms
8.9 s
9 s
9.1 s
9.2 s
9.3 s
9.4 s
9.5 s
9.6 s
9.7 s
9.8 s
9.9 s
10 s
10.1 s
10.2 s
10.3 s
10.4 s
10.5 s
10.6 s
10.7 s
10.8 s
10.9 s
11 s
11.1 s
11.2 s
11.3 s
11.4 s
11.5 s
11.6 s
11.7 s
11.8 s
11.9 s
12 sVisual Complete 99% 11.933 s
12.1 sLast Visual Change 12.033 s
| Performance advice | Best practice advice | Privacy advice | Page info | Technologies | 

Coach

The coach helps you find performance problems on your web page using web performance best practice rules. And gives you advice on privacy and best practices. Tested using Coach-core version 8.1.1.

I am the coach

Coach score

Performance advice (60)

TitleAdviceScore
Avoid slowing down the critical rendering path (avoidRenderBlocking)The page has 1 blocking requests and 4 in body parser blocking (4 JavaScript and 1 CSS).60
Description: The critical rendering path is what the browser needs to do to start rendering the page. Every file requested inside of the head element will postpone the rendering of the page, because the browser need to do the request. Avoid loading JavaScript synchronously inside of the head (you should not need JavaScript to render the page), request files from the same domain as the main document (to avoid DNS lookups) and inline CSS for really fast rendering and a short rendering path.
Offenders:
  • https://static-basket-01.wbbasket.ru/vol2/site/j/app.7c55f47880e103d84bab.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/lang/ru.d95fa4e9f237e3245a9d.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/index.1701211d7398bd04b3eb.js
  • https://static-basket-01.wbbasket.ru/vol2/site/r/route-data.11-19-1.3cc7546a.js
  • Don't scale images in the browser (avoidScalingImages)The page has 4 images that are scaled more than 100 pixels. It would be better if those images are sent so the browser don't need to scale them.60
    Description: It's easy to scale images in the browser and make sure they look good in different devices, however that is bad for performance! Scaling images in the browser takes extra CPU time and will hurt performance on mobile. And the user will download extra kilobytes (sometimes megabytes) of data that could be avoided. Don't do that, make sure you create multiple version of the same image server-side and serve the appropriate one.
    Offenders:
  • https://static-basket-01.wbbasket.ru/vol2/site/i/v3/footer/download/app-store.webp
  • https://static-basket-01.wbbasket.ru/vol2/site/i/v3/footer/download/google-play.webp
  • https://static-basket-01.wbbasket.ru/vol2/site/i/v3/footer/download/app-gallery.webp
  • https://static-basket-01.wbbasket.ru/vol2/site/i/v3/footer/download/rustore.webp
  • Have a fast first contentful paint (firstContentfulPaint)First contentful paint is poor (3.216 s). It is in the Google Web Vitals poor range, slower than 3 seconds.0
    Description: The First Contentful Paint (FCP) metric measures the time from when the page starts loading to when any part of the page content is rendered on the screen. For this metric, "content" refers to text, images (including background images), <svg> elements, or non-white <canvas> elements.
    Inline CSS for faster first render (inlineCss)The page has both inline CSS and CSS requests even though it uses a HTTP/2-ish connection. If you have many users on slow connections, it can be better to only inline the CSS. Run your own tests and check the waterfall graph to see what happens.95
    Description: In the early days of the Internet, inlining CSS was one of the ugliest things you can do. That has changed if you want your page to start rendering fast for your user. Always inline the critical CSS when you use HTTP/1 and HTTP/2 (avoid doing CSS requests that block rendering) and lazy load and cache the rest of the CSS. It is a little more complicated when using HTTP/2. Does your server support HTTP push? Then maybe that can help. Do you have a lot of users on a slow connection and are serving large chunks of HTML? Then it could be better to use the inline technique, becasue some servers always prioritize HTML content over CSS so the user needs to download the HTML first, before the CSS is downloaded.
    Have a fast largest contentful paint (largestContentfulPaint)Largest contentful paint is poor 4.636 s. It is in the Google Web Vitals poor range, slower than 4.5 seconds.0
    Description: Largest contentful paint is one of Google Web Vitals and reports the render time of the largest image or text block visible within the viewport, relative to when the page first started loading. To be fast according to Google, it needs to render before 2.5 seconds and results over 4 seconds is poor performance.
    Offenders:
  • https://static-basket-01.wbbasket.ru/vol2/site/i/v3/header/background_turbonadduv_skidok.webp
  • Avoid CPU Long Tasks (longTasks)The page has 3 CPU long tasks with the total of 1.029 s. The total blocking time is 879 ms . However the CPU Long Task is depending on the computer/phones actual CPU speed, so you should measure this on the same type of the device that your user is using. Use Geckoprofiler for Firefox or Chromes tracelog to debug your long tasks.40
    Description: Long CPU tasks locks the thread. To the user this is commonly visible as a "locked up" page where the browser is unable to respond to user input; this is a major source of bad user experience on the web today. However the CPU Long Task is depending on the computer/phones actual CPU speed, so you should measure this on the same type of the device that your user is using. To debug you should use the Chrome timeline log and drag/drop it into devtools or use Firefox Geckoprofiler.
    Offenders:
  • self
  • self
  • self
  • Avoid Frontend single point of failures (spof)The page has 3 requests inside of the head that can cause a SPOF (single point of failure). Load them asynchronously or move them outside of the document head.90
    Description: A page can be stopped from loading in the browser if a single JavaScript, CSS, and in some cases a font, couldn't be fetched or is loading really slowly (the white screen of death). That is a scenario you really want to avoid. Never load 3rd-party components synchronously inside of the head tag.
    Offenders:
  • https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/views/spa/main-v3...cf2550f6bd9b5.css
  • https://static-basket-01.wbbasket.ru/vol2/site/app/modal.fc7ba38625439b48a976.css
  • https://static-basket-01.wbbasket.ru/vol2/site/app/generalPreloader.afe2ccfd4a81a33f9c85.css
  • Avoid extra requests by setting cache headers (cacheHeaders)The page has 58 requests that are missing a cache time. Configure a cache time so the browser doesn't need to download them every time. It will save 1.4 MB the next access.0
    Description: The easiest way to make your page fast is to avoid doing requests to the server. Setting a cache header on your server response will tell the browser that it doesn't need to download the asset again during the configured cache time! Always try to set a cache time if the content doesn't change for every request.
    Offenders:
  • https://static-basket-01.wbbasket.ru/vol2/site/f/als-hauss-vf.woff2
  • https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/views/spa/main-v3...cf2550f6bd9b5.css
  • https://static-basket-01.wbbasket.ru/vol2/site/j/app.7c55f47880e103d84bab.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/lang/ru.d95fa4e9f237e3245a9d.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/index.1701211d7398bd04b3eb.js
  • https://static-basket-01.wbbasket.ru/vol2/site/r/route-data.11-19-1.3cc7546a.js
  • https://static-basket-01.wbbasket.ru/vol2/site/i/v3/header/background_turbonadduv_skidok.webp
  • https://static-basket-01.wbbasket.ru/vol2/site/t/jst/cookies.6dfe33e4.json
  • https://static-basket-01.wbbasket.ru/vol1/global-payment/default-payment.json
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/services/orderService.46b8a784966c73738c45.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/services/wbxOrderService.1a...0edef77e60cf16.js
  • https://static-basket-01.wbbasket.ru/vol2/site/t/jst/menuLk.c68c237c.json
  • https://static-basket-01.wbbasket.ru/vol0/data/stores-data.json
  • https://static-basket-01.wbbasket.ru/vol0/data/promotion-creatives.json.hash
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/userInfo/userInfoRe...77394b2b922f93.js
  • https://www.wildberries.ru/manifestv2.json
  • https://www.wildberries.ru/icon.svg
  • https://static-basket-01.wbbasket.ru/vol0/data/promotion-creatives.json
  • https://static-basket-01.wbbasket.ru/vol2/site/t/jst/mobileMenuTemp.42883d4f.json
  • https://static-basket-01.wbbasket.ru/vol2/site/t/jst/footer.413388ce.json
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/searchInput/suggest...4925c66d180c76.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/swiper.3f1f360c9d33874fe5c5.js
  • https://static-basket-01.wbbasket.ru/vol2/site/t/jst/onlineChatPopup.0b17d52e.json
  • https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/modules/popups/ch...a76daa46aa1d8.css
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/onlineChat/onlineCh...dff1c0ad16fdff.js
  • https://static-basket-01.wbbasket.ru/vol2/site/t/jst/spaproductcard.79780a6a.json
  • https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/views/site/produc...a0bb3577ed8e7.css
  • https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/modules/popups/pr...d1ac312aa759f.css
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/customTags/lazyBlockLoader....90a678955c61ae.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/customTags/collapsibleBlock...300d457422f0b3.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/customTags/spa.recommendati...76a8edf240731f.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/customTags/spa.recentItems....a12d1cd25122c2.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/customTags/spa.tooltip.d1551932ebb94b589950.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/video.ffd883509e5b3f97914a.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/customTags/spa.hlsPlayer.fc...ec18ecfdd8813a.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/models/product.3230d4556acb33a47c5f.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/services/clientActionsHelpe...fb40750cee8df9.js
  • https://user-geo-data.wildberries.ru/get-geo-info...s.ru/get-geo-info
  • https://www.wildberries.ru/favicon.ico
  • https://static-basket-01.wbbasket.ru/vol0/data/no-return-subjects.json
  • https://static-basket-01.wbbasket.ru/vol2/site/t/jst/uploadImageForSearchByImagePopUp.29d85a1d.json
  • https://static-basket-01.wbbasket.ru/vol2/site/s/spa/modules/uploadImageForSearc...ae50b44a28588.css
  • https://www.wildberries.ru/android-icon-144x144.png
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/customTags/banners.473830efc3430176d1b8.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/uploadImageForSearc...f1750e244e0f41.js
  • https://static-basket-01.wbbasket.ru/vol0/data/main-menu-ru-ru-v3.json
  • https://static-basket-01.wbbasket.ru/vol2/site/t/jst/menuTopTmpl.dac4c2eb.json
  • https://banners-website.wildberries.ru/public/v2/banners...public/v2/banners
  • https://catalog.wb.ru/menu/v11/api?locale=ru&lang=ru&id=131289&collapse&dest=-1255987
  • https://cdn.wbbasket.ru/api/v3/upstreams?t=1743640160572
  • https://static-basket-01.wbbasket.ru/vol0/data/adult-subjects.json
  • https://static-basket-01.wbbasket.ru/vol0/data/adult-subjects.json
  • https://static-basket-01.wbbasket.ru/vol2/site/i/v3/footer/download/app-store.webp
  • https://static-basket-01.wbbasket.ru/vol2/site/i/v3/footer/download/google-play.webp
  • https://static-basket-01.wbbasket.ru/vol2/site/i/v3/footer/download/app-gallery.webp
  • https://static-basket-01.wbbasket.ru/vol2/site/i/v3/footer/download/rustore.webp
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/services/parseToken/parseTo...378e54035cf6d6.js
  • https://pow.wildberries.ru/api/v1/js-settings
  • Long cache headers is good (cacheHeadersLong)The page has 5 requests that have a shorter cache time than 30 days (but still a cache time).95
    Description: Setting a cache header is good. Setting a long cache header (at least 30 days) is even better beacause then it will stay long in the browser cache. But what do you do if that asset change? Rename it and the browser will pick up the new version.
    Offenders:
  • https://a.wb.ru/sdk/sdk.js
  • https://basket-08.wbbasket.ru/vol1132/part113256/113256091/info/ru/card.json
  • https://basket-08.wbbasket.ru/vol1132/part113256/113256091/info/ru/card.json
  • https://pow.wildberries.ru/scripts/d.js?7eec71a7
  • https://pow.wildberries.ru/scripts/wasm_exec.js?5c7aa861
  • Always compress text content (compressAssets)The page has 1 request that are served uncompressed. You could save a lot of bytes by sending them compressed instead.90
    Description: In the early days of the Internet there were browsers that didn't support compressing (gzipping) text content. They do now. Make sure you compress HTML, JSON, JavaScript, CSS and SVG. It will save bytes for the user; making the page load faster and use less bandwith.
    Offenders:
    URLTransfer sizeContent size
    https://cdn.wbbasket.ru/api/v3/upstreams?t=1743640160572 10.9 KB10.7 KB
    Total CSS size shouldn't be too big (cssSize)The total CSS transfer size is 183.7 kB and uncompressed size is 1.2 MB. That is big and the CSS could most probably be smaller.0
    Description: Delivering a massive amount of CSS to the browser is not the best thing you can do, because it means more work for the browser when parsing the CSS against the HTML and that makes the rendering slower. Try to send only the CSS that is used on that page. And make sure to remove CSS rules when they aren't used anymore.
    Offenders:
    URLTransfer sizeContent size
    https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/views/spa/main-v3...cf2550f6bd9b5.css 81.9 KB543.2 KB
    https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/modules/popups/ch...a76daa46aa1d8.css 10.4 KB76.9 KB
    https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/views/site/produc...a0bb3577ed8e7.css 68.5 KB491.6 KB
    https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/modules/popups/pr...d1ac312aa759f.css 17.5 KB97.7 KB
    https://static-basket-01.wbbasket.ru/vol2/site/s/spa/modules/uploadImageForSearc...ae50b44a28588.css 1.1 KB4.6 KB
    The favicon should be small and cacheable (favicon)The favicon size is 16 kB bytes. That's quite big, can you make it smaller? The favicon has no cache time. 0
    Description: It is easy to make the favicon big but please avoid doing that, because every browser will then perform an unnecessarily large download. And make sure the cache headers are set for a long time for the favicon. It is easy to miss since it's another content type.
    Offenders:
  • https://www.wildberries.ru/favicon.ico
  • Total JavaScript size shouldn't be too big (javascriptSize)The total JavaScript transfer size is 660.5 kB and the uncompressed size is 2.4 MB. This is totally crazy! There is really room for improvement here. 0
    Description: A lot of JavaScript often means you are downloading more than you need. How complex is the page and what can the user do on the page? Do you use multiple JavaScript frameworks?
    Offenders:
    URLTransfer sizeContent size
    https://static-basket-01.wbbasket.ru/vol2/site/j/app.7c55f47880e103d84bab.js 64.8 KB190.5 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/lang/ru.d95fa4e9f237e3245a9d.js 86.0 KB371.6 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/index.1701211d7398bd04b3eb.js 145.5 KB569.7 KB
    https://static-basket-01.wbbasket.ru/vol2/site/r/route-data.11-19-1.3cc7546a.js 16.9 KB81.2 KB
    https://a.wb.ru/sdk/sdk.js 2.1 KB5.8 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/services/orderService.46b8a784966c73738c45.js 11.3 KB35.4 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/services/wbxOrderService.1a...0edef77e60cf16.js 13.9 KB44.8 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/userInfo/userInfoRe...77394b2b922f93.js 1.3 KB4.6 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/searchInput/suggest...4925c66d180c76.js 1.6 KB3.9 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/swiper.3f1f360c9d33874fe5c5.js 26.7 KB103.4 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/onlineChat/onlineCh...dff1c0ad16fdff.js 12.1 KB39.4 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/customTags/lazyBlockLoader....90a678955c61ae.js 489 B780 B
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/customTags/collapsibleBlock...300d457422f0b3.js 1.1 KB3.3 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/customTags/spa.recommendati...76a8edf240731f.js 2.8 KB9.3 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/customTags/spa.recentItems....a12d1cd25122c2.js 660 B983 B
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/customTags/spa.tooltip.d1551932ebb94b589950.js 2.6 KB9.1 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/video.ffd883509e5b3f97914a.js 172.1 KB634.5 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/customTags/spa.hlsPlayer.fc...ec18ecfdd8813a.js 954 B2.0 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/models/product.3230d4556acb33a47c5f.js 15.6 KB67.4 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/services/clientActionsHelpe...fb40750cee8df9.js 1.9 KB5.0 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/customTags/banners.473830efc3430176d1b8.js 9.8 KB41.1 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/uploadImageForSearc...f1750e244e0f41.js 1.4 KB5.3 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/services/parseToken/parseTo...378e54035cf6d6.js 23.5 KB75.5 KB
    https://pow.wildberries.ru/scripts/d.js?7eec71a7 23.8 KB59.0 KB
    https://pow.wildberries.ru/scripts/wasm_exec.js?5c7aa861 6.0 KB15.7 KB
    Avoid using incorrect mime types (mimeTypes)The page has 5 misconfigured mime types. 95
    Description: It's not a great idea to let browsers guess content types (content sniffing), in some cases it can actually be a security risk.
    Offenders:
  • https://static-basket-01.wbbasket.ru/vol0/data/promotion-creatives.json.hash
  • https://www.wildberries.ru/webapi/logging/jserror
  • https://www.wildberries.ru/webapi/logging/jserror
  • https://static-basket-01.wbbasket.ru/vol0/data/promotion-creatives.json
  • https://www.wildberries.ru/webapi/logging/jserror
  • Make each CSS response small (optimalCssSize)https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/views/spa/main-v3.482c63ccf2550f6bd9b5.css size is 83.8 kB (83821) and that is bigger than the limit of 14.5 kB. https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/views/site/product-page-v3.197a535a0bb3577ed8e7.css size is 70.1 kB (70102) and that is bigger than the limit of 14.5 kB. https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/modules/popups/productCardPopup.6602b1fd1ac312aa759f.css size is 18 kB (17961) and that is bigger than the limit of 14.5 kB. Try to make the CSS files fit into 14.5 KB.70
    Description: Make CSS responses small to fit into the magic number TCP window size of 14.5 KB. The browser can then download the CSS faster and that will make the page start rendering earlier.
    Offenders:
    URLTransfer sizeContent size
    https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/views/spa/main-v3...cf2550f6bd9b5.css 81.9 KB543.2 KB
    https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/views/site/produc...a0bb3577ed8e7.css 68.5 KB491.6 KB
    https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/modules/popups/pr...d1ac312aa759f.css 17.5 KB97.7 KB
    Don't use private headers on static content (privateAssets)The page has 5 requests with private headers. The main page has a private header. It could be right in some cases where the user can be logged in and served specific content. But if your asset is static it should never be private. Make sure that the assets really should be private and only used by one user. Otherwise, make it cacheable for everyone.60
    Description: If you set private headers on content, that means that the content are specific for that user. Static content should be able to be cached and used by everyone. Avoid setting the cache header to private.
    Offenders:
  • https://www.wildberries.ru/catalog/113256091/detail.aspx
  • https://www.wildberries.ru/manifestv2.json
  • https://www.wildberries.ru/icon.svg
  • https://www.wildberries.ru/android-icon-144x144.png
  • https://pow.wildberries.ru/api/v1/js-settings
  • Best practice advice (70)

    TitleAdviceScore
    Meta description (metaDescription)The meta description is too long. It has 162 characters, the recommended max is 15550
    Description: Use a page description to make the page more relevant to search engines.
    Page title (pageTitle)The page is missing a title.0
    Description: Use a title to make the page more relevant to search engines.
    Avoid too many third party requests (thirdParty)The page do more requests to third party domains (62 requests and 1.3 MB) then first party (17 requests and 91.7 kB). The page transfer more bytes from third party domains (1.3 MB) then first party (91.7 kB). The regex .*wildberries.* was used to calculate first/third party requests.0
    Description: Do not load most of your content from third party URLs.
    Avoid unnecessary headers (unnecessaryHeaders)There are 16 responses that sets both a max-age and expires header. There are 13 responses that sets a pragma no-cache header (that is a request header). There are 19 responses that sets a server header. 52
    Description: Do not send headers that you don't need. We look for p3p, cache-control and max-age, pragma, server and x-frame-options headers. Have a look at Andrew Betts - Headers for Hackers talk as a guide https://www.youtube.com/watch?v=k92ZbrY815c or read https://www.fastly.com/blog/headers-we-dont-want.
    Offenders:
  • https://www.wildberries.ru/catalog/113256091/detail.aspx
  • https://www.wildberries.ru/catalog/113256091/detail.aspx
  • https://www.wildberries.ru/catalog/113256091/detail.aspx
  • https://a.wb.ru/sdk/sdk.js
  • https://www.wildberries.ru/webapi/logging/jserror
  • https://www.wildberries.ru/webapi/logging/jserror
  • https://www.wildberries.ru/webapi/logging/jserror
  • https://www.wildberries.ru/webapi/logging/jserror
  • https://www.wildberries.ru/webapi/logging/jserror
  • https://www.wildberries.ru/webapi/logging/jserror
  • https://www.wildberries.ru/webapi/personalinfo
  • https://www.wildberries.ru/webapi/personalinfo
  • https://www.wildberries.ru/webapi/personalinfo
  • https://www.wildberries.ru/manifestv2.json
  • https://www.wildberries.ru/manifestv2.json
  • https://www.wildberries.ru/manifestv2.json
  • https://www.wildberries.ru/icon.svg
  • https://www.wildberries.ru/icon.svg
  • https://www.wildberries.ru/icon.svg
  • https://www.wildberries.ru/webapi/stats/pageview
  • https://www.wildberries.ru/webapi/stats/pageview
  • https://www.wildberries.ru/webapi/stats/pageview
  • https://user-geo-data.wildberries.ru/get-geo-info...s.ru/get-geo-info
  • https://www.wildberries.ru/favicon.ico
  • https://www.wildberries.ru/favicon.ico
  • https://www.wildberries.ru/favicon.ico
  • https://www.wildberries.ru/android-icon-144x144.png
  • https://www.wildberries.ru/android-icon-144x144.png
  • https://www.wildberries.ru/android-icon-144x144.png
  • https://www.wildberries.ru/webapi/stats/pageview
  • https://www.wildberries.ru/webapi/stats/pageview
  • https://www.wildberries.ru/webapi/stats/pageview
  • https://banners-website.wildberries.ru/public/v2/banners...public/v2/banners
  • https://www.wildberries.ru/webapi/logging/jserror
  • https://www.wildberries.ru/webapi/logging/jserror
  • https://www.wildberries.ru/webapi/logging/jserror
  • https://catalog.wb.ru/menu/v11/api?locale=ru&lang=ru&id=131289&collapse&dest=-1255987
  • https://cdn.wbbasket.ru/api/v3/upstreams?t=1743640160572
  • https://pow.wildberries.ru/api/v1/js-settings
  • https://pow.wildberries.ru/api/v1/js-settings
  • https://pow.wildberries.ru/api/v1/js-settings
  • https://pow.wildberries.ru/scripts/d.js?7eec71a7
  • https://pow.wildberries.ru/scripts/d.js?7eec71a7
  • https://pow.wildberries.ru/api/v1/client/get-task?client_id=c810af55-d5e0-41dc-960b-33f809d7e6de
  • https://pow.wildberries.ru/api/v1/client/get-task?client_id=c810af55-d5e0-41dc-960b-33f809d7e6de
  • https://pow.wildberries.ru/api/v1/client/get-task?client_id=c810af55-d5e0-41dc-960b-33f809d7e6de
  • https://pow.wildberries.ru/scripts/wasm_exec.js?5c7aa861
  • https://pow.wildberries.ru/scripts/wasm_exec.js?5c7aa861
  • Privacy advice (93)

    TitleAdviceScore
    Set a referrer-policy header to make sure you do not leak user information. (referrerPolicyHeader)Set a referrer-policy header to make sure you do not leak user information.0
    Description: Referrer Policy is a new header that allows a site to control how much information the browser includes with navigations away from a document and should be set by all sites. https://scotthelme.co.uk/a-new-security-header-referrer-policy/.
    Offenders:
  • https://www.wildberries.ru/catalog/113256091/detail.aspx
  • Set a strict transport header to make sure the user always use HTTPS. (strictTransportSecurityHeader)A strict transport header is set but miss out on setting includeSubDomains90
    Description: The HTTP Strict-Transport-Security response header (often abbreviated as HSTS) lets a web site tell browsers that it should only be accessed using HTTPS, instead of using HTTP. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security.

    Page info

    Page info
    Title
    Width485
    Height1273
    DOM elements559
    Avg DOM depth9
    Max DOM depth18
    Iframes0
    Script tags116
    Local storage92.5 KB
    Session storage113 B
    Network Information API3g
    Resource Hints
    preconnect
    https://static-basket-01.wbbasket.ru/
    https://splitter.wb.ru/

    Technologies used to build the page.

    Data collected using Wappalyzer version 6.10.66. With updated code from Webappanalyzer 2024-12-27. Use --browsertime.firefox.includeResponseBodies htmlor --browsertime.chrome.includeResponseBodies htmlto help Wappalyzer find more information about technologies used.

    TechnologyConfidenceCategory
    HSTS 100  Security
    HTTP/3 100  Miscellaneous
    | Browser metrics | Visual Metrics | Largest Contentful Paint | Cumulative Layout Shift | Long Aninimation Frames | Metrics from CDP | 

    Visual Metrics

    Browser Metrics

    Google Web Vitals
    Time to first byte (TTFB)783 ms
    First Contentful Paint (FCP)3.216 s
    Largest Contentful Paint (LCP)4.636 s
    Cumulative Layout Shift (CLS)0.08
    Total Blocking Time (TBT)879 ms
    First Contentful Paint info
    Elements that needed recalculate style before FCP162
    Time spent in recalculate style before FCP18.633 ms
    Extra timings
    TTFB783 ms
    First Paint3.216 s
    Load Event End5.978 s
    Fully loaded13.521 s

    Largest Contentful Paint

    When in time the page main content is rendered (collected using the Largest Contentful Paint API). Read more about Largest Contentful Paint.

    Element typeHEADER
    Element/tag<header class="header j-header hide-mobile"></header>
    Render time 4.636 s
    Element render delay3.853 s
    TTFB783 ms
    Resource delay0 ms
    Resource load duration0 ms
    Elements that needed recalculate style before LCP245
    Time spent in recalculate style before LCP28.803 ms
    Load time4.616 s
    URL https://static-baske...adduv_skidok.webp
    Size (width*height)31040
    DOM path
    div:eq(0) > header> div:eq(0) > header>
    LCP

    The largest contentful paint is highlighted in the image. If no element is highlighted the element was removed before the screenshot or the LCP API couldn't find the element.

    The Largest Contentful Paint API highlighted this image as a part of the LCP.

    LCP

    Detected Cumulative Layout Shift

    0.07583 cumulative layout shift collected from the Cumulative Layout Shift API.

    These HTML elements contribute most to the Cumulative Layout Shifts of the page. The higher score, the more layout shift.

    ScoreHTML Element
    0.07583<main class="main left-bg" role="main" id="body-layout"></main>,<footer class="footer j-footer footer-ru" id="footer" data-link=" {on 'click' '.j-dropdown-title' ~root.onMenuSelected} {on 'click' '.j-wba-footer-item' ~root.sendStatEvent}" data-jsv="#66^/66^#67^/67^"></footer>,<div class="navbar-mobile hide-desktop j-navbar-mobile" data-link="{on 'click' '.navbar-mobile__link' sendAnalytics}" data-jsv="#27^/27^"></div>
    body > div:eq(0) > main#body-layout,body > div:eq(0) > footer#footer,body > div:eq(1)
    Layout shift

    The elements that have shifted place is highlighted in the image (that have a higher value than 0.01). If the element shifted outside of the viewport, you will not see it there. It can be hard to understand what content that has shifted, if that's the case, checkout the video or the filmstrip of the run.

    Long Animation Frames

    Read more about the Long Animation Frames API here here.

    The top 10 longest animation frames entries

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    964.7 ms1.024 s0.1 ms0 ms0.1 ms
    No availible script information.
    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    803.2 ms854.9 ms1 ms0 ms1 ms
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/index.1701211d7398bd04b3eb.js

    Invoker:  IDBOpenDBRequest.onsuccess
    Invoker Type: event-listener
    Window attribution: self
    Source char position: -1

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    64.3 ms113 ms1.4 ms0 ms1.4 ms
    https://static-basket-01.wbbasket.ru/vol2/site/j/video.ffd883509e5b3f97914a.js

    Invoker:  https://static-basket-01.wbbasket.ru/vol2/site/j/video.ffd883509e5b3f97914a.js
    Invoker Type: classic-script
    Window attribution: self

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    45.9 ms95.9 ms0 ms0 ms0 ms
    No availible script information.
    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    15.8 ms65.8 ms0 ms0 ms0 ms
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/index.1701211d7398bd04b3eb.js

    Invoker:  https://static-basket-01.wbbasket.ru/vol2/site/j/spa/index.1701211d7398bd04b3eb.js
    Invoker Type: classic-script
    Window attribution: self

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    4 ms17.5 ms37.6 ms0.1 ms37.5 ms
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/index.1701211d7398bd04b3eb.js

    Invoker:  Response.json.then
    Invoker Type: resolve-promise
    Window attribution: self
    Source char position: -1

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    0 ms2.393 s19.4 ms0 ms19.4 ms
    No availible script information.
    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    0 ms70.5 ms0.3 ms0.3 ms0 ms
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/index.1701211d7398bd04b3eb.js

    Invoker:  Response.json.then
    Invoker Type: resolve-promise
    Window attribution: self
    Source char position: -1

    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/index.1701211d7398bd04b3eb.js

    Invoker:  Response.json.then
    Invoker Type: resolve-promise
    Window attribution: self
    Source char position: -1

    Invoker:  SCRIPT[src=https://static-basket-01.wbbasket.ru/vol2/site/j/swiper.3f1f360c9d33874fe5c5.js].onload
    Invoker Type: event-listener
    Window attribution: self
    Source char position: -1

    Forced Style And Layout Duration: 12 ms

    Invoker:  SCRIPT[src=https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/onlineChat/onlineChatPopup.705b8bdff1c0ad16fdff.js].onload
    Invoker Type: event-listener
    Window attribution: self
    Source char position: -1

    Server timings

    There are no Server Timings.

    Custom metrics collected through JavaScript

    There are no custom configured scripts.

    Extra metrics collected using scripting

    There are no custom extra metrics from scripting.

    CDP Performance

    namevalue
    AudioHandlers0
    AudioWorkletProcessors0
    Documents22
    Frames16
    JSEventListeners24871
    LayoutObjects718
    MediaKeySessions0
    MediaKeys0
    Nodes2031
    Resources77
    ContextLifecycleStateObservers55
    V8PerContextDatas1
    WorkerGlobalScopes0
    UACSSResources0
    RTCPeerConnections0
    ResourceFetchers22
    AdSubframes0
    DetachedScriptStates2
    ArrayBufferContents4
    LayoutCount15
    RecalcStyleCount23
    LayoutDuration30
    RecalcStyleDuration70
    DevToolsCommandDuration29
    ScriptDuration289
    V8CompileDuration1
    TaskDuration3117
    TaskOtherDuration2697
    ThreadTime3
    ProcessTime5
    JSHeapUsedSize27478580
    JSHeapTotalSize55144448
    FirstMeaningfulPaint3212
    | Summary  | Largest responses  | Requests and sizes per content type  | Data per domain | Expires and last modified statistics  | Requests loaded after onLoad event  | Render blocking requests  | 

    PageXray

    How the page is built.

    Summary
    HTTP versionHTTP/2.0
    Total requests79
    Total domains9
    Total transfer size1.4 MB
    Total content size9.2 MB
    Responses missing compression43
    Number of cookies0
    Third party cookies0
    Requests per response code
    20077
    2042

    Largest assets on the page (by transfer size)

    Requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b10.9 KB33.3 KB1
    css0 b179.4 KB1.2 MB5
    javascript399 B645.0 KB2.3 MB25
    image0 b28.1 KB26.8 KB6
    font0 b134.7 KB134.4 KB1
    json0 b373.4 KB5.5 MB27
    other0 b0 b0 b5
    plain942 B169 B16 B7
    svg0 b1.4 KB1.5 KB1
    favicon0 b15.7 KB15.0 KB1
    Total1.3 KB1.4 MB9.2 MB79

    Data per domain

    DomainTotal download timeTransfer SizeContent SizeRequests
    www.wildberries.ru6.574 s48.3 KB68.2 KB11
    static-basket-01.wbbasket.ru46.108 s1.2 MB8.8 MB51
    a.wb.ru6.531 s2.1 KB5.8 KB7
    user-geo-data.wildberries.ru4.268 s617 B369 B1
    basket-08.wbbasket.ru1.092 s2.8 KB12.3 KB2
    banners-website.wildberries.ru1.657 s9.1 KB44.1 KB1
    catalog.wb.ru1.348 s50.9 KB215.6 KB1
    cdn.wbbasket.ru1.455 s10.9 KB10.7 KB1
    pow.wildberries.ru2.474 s31.7 KB75.2 KB4

    Expires and last modified statistics

    typeminmedianmax
    Expires0 seconds0 seconds1 day
    Last modified2 minutes2 weeks1 year

    Requests loaded after onLoad event

    Included requests done after load event end.

    ContentTransfer SizeRequests
    html0 b0
    css97.6 KB4
    javascript303.1 KB17
    image24.9 KB5
    font0 b0
    json183.3 KB22
    svg1.4 KB1
    plain0 b3
    favicon15.7 KB1
    other0 b1
    Total626.0 KB54

    Requests loaded after onContentLoad

    Includes requests done after DOM content loaded.

    ContentTransfer SizeRequests
    html0 b0
    css97.6 KB4
    javascript304.4 KB18
    image24.9 KB5
    font0 b0
    other0 b5
    json371.4 KB24
    plain169 B7
    svg1.4 KB1
    favicon15.7 KB1
    Total815.6 KB65

    Render blocking requests

    Render blocking information directly from Chrome.

    BlockingIn body parser blockingPotentially blocking
    140

    Render information

    URLType
    https://static-baske...509e5b3f97914a.jsnon_blocking
    https://static-baske...1d7398bd04b3eb.jsin_body_parser_blocking
    https://static-baske...ls-hauss-vf.woff2non_blocking
    https://static-baske...e9f237e3245a9d.jsin_body_parser_blocking
    https://static-baske...cf2550f6bd9b5.cssblocking
    https://static-baske...a0bb3577ed8e7.cssdynamically_injected_non_blocking
    https://static-baske...7880e103d84bab.jsin_body_parser_blocking
    https://static-baske...0c9d33874fe5c5.jsnon_blocking
    https://pow.wildberr...s.ru/scripts/d.jsnon_blocking
    https://static-baske...378e54035cf6d6.jsnon_blocking
    https://static-baske...d1ac312aa759f.cssdynamically_injected_non_blocking
    https://static-baske...-19-1.3cc7546a.jsin_body_parser_blocking
    https://static-baske...556acb33a47c5f.jsnon_blocking
    https://static-baske...0edef77e60cf16.jsnon_blocking
    https://static-baske...dff1c0ad16fdff.jsnon_blocking
    https://static-baske...84966c73738c45.jsnon_blocking
    https://static-baske...a76daa46aa1d8.cssdynamically_injected_non_blocking
    https://static-baske...efc3430176d1b8.jsnon_blocking
    https://static-baske...76a8edf240731f.jsnon_blocking
    https://static-baske...32ebb94b589950.jsnon_blocking
    https://a.wb.ru/sdk/sdk.jsnon_blocking
    https://static-baske...fb40750cee8df9.jsnon_blocking
    https://static-baske...4925c66d180c76.jsnon_blocking
    https://static-baske...f1750e244e0f41.jsnon_blocking
    https://static-baske...77394b2b922f93.jsnon_blocking
    https://static-baske...ae50b44a28588.cssdynamically_injected_non_blocking
    https://static-baske...300d457422f0b3.jsnon_blocking
    https://static-baske...ec18ecfdd8813a.jsnon_blocking
    https://static-baske...a12d1cd25122c2.jsnon_blocking
    https://static-baske...90a678955c61ae.jsnon_blocking
    CPU Long Tasks | CPU Time Spent | CPU Time Spent Per Request | CPU Time Per Tool/Domain | 

    CPU

    Download the Chrome trace log and drag and drop it into Developer Tools / Performance in Chrome.

    Long Tasks

    Collected using the Long Task API. A long task is a task that take 50 milliseconds or more.

    TypeQuantityTotal duration (ms)
    Total Blocking Time 879
    Max Potential First Input Delay 852
    Long Tasks before First Paint00
    Long Tasks before First Contentful Paint00
    Long Tasks before Largest Contentful Paint165
    Long Tasks after Load Event End2964
    Total Long Tasks31029

    CPU last long task happened at 8.736 s

    Individual Long Tasks

    namestartTimedurationcontainerIdcontainerNamecontainerSrccontainerType
    self454965window
    self6446852window
    self8736112window

    CPU time spent

    Calculated using Tracium.

    Categories (ms)
    parseHTML45
    styleLayout169
    paintCompositeRender96
    scriptParseCompile1
    scriptEvaluation1355
    garbageCollection38
    other1306
    Events (ms)
    RunTask1159
    RunMicrotasks1078
    v8.run241
    UpdateLayoutTree114
    PrePaint55
    Layout48
    Paint44
    PaintImage43
    Commit36
    ParseHTML31
    Layerize22
    FunctionCall18
    V8.GC_SCAVENGER_SCAVENGE_PARALLEL14
    V8.GC_MC_INCREMENTAL_EMBEDDER_TRACING10

    Time spent per request

    URLCPU time (ms)
    https://static-basket-01.wbbasket.ru/vol2/site/j/video.ffd883509e5b3f97914a.js113
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/index.1701211d7398bd04b3eb.js81
    https://static-basket-01.wbbasket.ru/vol2/site/j/app.7c55f47880e103d84bab.js28
    https://a.wb.ru/sdk/sdk.js22

    CPU time spent

    Tool/domainTime (ms)
    static-basket-01.wbbasket.ru222.6
    a.wb.ru21.5
    | Categories | | First vs third | 

    Third party

    Third party requests categorised by Third party web version 0.26.2.

    CategoryRequests
    CategoryNumber of tools

    Unmatched third party domains

    Here's a list of domains that didn't match any tool in Third party web. If you are sure they are third party domains, please do a PR to that project. You can also fine tune the list using --firstParty.

    static-basket-01.wbbasket.ru
    a.wb.ru
    basket-08.wbbasket.ru
    catalog.wb.ru
    cdn.wbbasket.ru

    First party requests and sizes per content type

    Calculated using .*wildberries.* (use --firstParty to configure).

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b10.9 KB33.3 KB1
    css0 b0 b0 b0
    javascript0 b29.8 KB74.7 KB2
    image0 b16.7 KB16.1 KB1
    font0 b0 b0 b0
    other0 b0 b0 b3
    json0 b15.0 KB47.3 KB8
    svg0 b1.4 KB1.5 KB1
    favicon0 b15.7 KB15.0 KB1
    TotalN/A89.6 KB187.9 KB17

    Third party requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b0 b0 b0
    css0 b179.4 KB1.2 MB5
    javascript399 B615.2 KB2.3 MB23
    image0 b11.3 KB10.8 KB5
    font0 b134.7 KB134.4 KB1
    json0 b358.3 KB5.4 MB19
    other0 b0 b0 b2
    plain942 B169 B16 B7
    Total1.3 KB1.3 MB9.0 MB62
    afterPageCompleteCheck.png | layoutShift.png | largestContentfulPaint.png | 

    Screenshots

    afterPageCompleteCheck.png

    afterPageCompleteCheck.png

    layoutShift.png

    layoutShift.png

    largestContentfulPaint.png

    largestContentfulPaint.png

    Axe

    Axe is an accessibility testing engine for websites and other HTML-based user interfaces. Tested using axe-core version 4.10.2. Read more about axe-core .

    Violations

    serious
    Elements must meet minimum color contrast ratio thresholds (cat.color,wcag2aa,wcag143,TTv5,TT13.c,EN-301-549,EN-9.1.4.3,ACT) - color-contrastEnsure the contrast between foreground and background colors meets WCAG 2 AA minimum contrast ratio thresholds
    Fix any of the following: Element has insufficient color contrast of 3.28 (foreground color: #868695, background color: #f4f5f7, font size: 9.0pt (12px), font weight: normal). Expected contrast ratio of 4.5:1
    • <span>© Wildberries 2004–2025.<span> Все права защищены.</span></span>
    • <span> Все права защищены.</span>
    • <span> Применяются <a class="footer__link" target="_blank" data-link="href{legalRedirectUrl: '/services/pravila-primeneniya-rekomendatelnyh-tehnologiy'}" href="https://legal.wildberries.ru/rules-for-the-use-of-recommendation-technologies/country/ru/lang/ru/">рекомендательные технологии</a> </span>
    • <a class="footer__link" target="_blank" data-link="href{legalRedirectUrl: '/services/pravila-primeneniya-rekomendatelnyh-tehnologiy'}" href="https://legal.wildberries.ru/rules-for-the-use-of-recommendation-technologies/country/ru/lang/ru/">рекомендательные технологии</a>
    Documents must have <title> element to aid in navigation (cat.text-alternatives,wcag2a,wcag242,TTv5,TT12.a,EN-301-549,EN-9.2.4.2,ACT) - document-titleEnsure each HTML document contains a non-empty <title> element
    Fix any of the following: Document does not have a non-empty <title> element
    • <html lang="ru" translate="no" class="adaptive" style="--custom-promo-filter-color: #FFFFFF; --custom-promo-filter-background: #A344FA; --custom-promo-filter-switch-color: #A0A0A0; --custom-promo-filter-switch-background: #FFFFFF; --custom-promo-filter-switch-active-color: #FFFFFF; --custom-promo-filter-switch-active-background: #FA81FF;">
    moderate
    Page should contain a level-one heading (cat.semantics,best-practice) - page-has-heading-oneEnsure that the page, or at least one of its frames contains a level-one heading
    Fix all of the following: Page must have a level-one heading
    • <html lang="ru" translate="no" class="adaptive" style="--custom-promo-filter-color: #FFFFFF; --custom-promo-filter-background: #A344FA; --custom-promo-filter-switch-color: #A0A0A0; --custom-promo-filter-switch-background: #FFFFFF; --custom-promo-filter-switch-active-color: #FFFFFF; --custom-promo-filter-switch-active-background: #FA81FF;">
    All page content should be contained by landmarks (cat.keyboard,best-practice) - regionEnsure all page content is contained by landmarks
    Fix any of the following: Some page content is not contained by landmarks
    • <input class="menu-burger__btn-search j-search-input-mobile search-placeholder" name="searchInput" type="search" placeholder="Найти на Wildberries">
    • <div class="menu-burger__main j-menu-burger-main">
    • <a class="navbar-mobile__link" data-wba-header-name="Main_tabbar" data-link-type="home" href="/" aria-label="Главная страница"> <span class="navbar-mobile__icon navbar-mobile__icon--home" data-link="class{merge:menuModel.type == 'home' toggle='navbar-mobile__icon--active'}"></span> </a>
    • <a class="navbar-mobile__link" data-wba-header-name="Cart_tabbar" href="/lk/basket" aria-label="Корзина">
    • <a class="navbar-mobile__link" data-wba-header-name="Favorites_tabbar" href="/lk/favorites" aria-label="Избранные товары" data-link="{on 'click' showPopupLoginMobile}" data-jsv="#20^/20^">
    • <a class="navbar-mobile__link" data-wba-header-name="LK_tabbar" href="/lk" aria-label="Личный кабинет" data-link="{on 'click' showPopupLoginMobile}" data-jsv="#22^/22^">
    • <p class="cookies__text">