Run 1 summary

https://www.wildberries.ru

Tested 2025-04-01 23:05:44 using Chrome 134.0.6998.35 (runtime settings).

SummaryWaterfall MetricsFilmstrip CoachPageXrayCPU Third partyScreenshotsaxe

Summary

MetricValue
Page metrics
Performance score61
Total page size1.6 MB
Requests61
Timing metrics
TTFB151 ms
First Paint488 ms
Fully Loaded3.585 s
Google Web Vitals
TTFB151 ms
First Contentful Paint (FCP) 488 ms
Largest Contentful Paint (LCP) 520 ms
Cumulative Layout Shift (CLS) 0.40
120 ms
Total Blocking Time1.199 s
Max Potential FID1.202 s
CPU metrics
CPU long tasks5
CPU last long task happens at2.927 s
Visual Metrics
First Visual Change467 ms
Speed Index2.399 s
Visual Complete 85%3.200 s
Visual Complete 99%3.200 s
Last Visual Change3.200 s
Screenshot
| Waterfall | | Download HAR | 

Waterfall

| Filmstrip | 

Filmstrip

Use--filmstrip.showAll to show all filmstrips.

0 s
0.4 sCPU Long Task duration 75 ms
0.5 sFirst Visual Change 467 msCPU Long Task duration 86 msFirst Contentful Paint 488 ms
0.6 sLCP <> banner_70dcd333-5419-42b8-9288-9943709184a1 520 ms
0.7 sDOM Content Loaded Time 609 msPage Load Time 671 ms
0.9 s
1 sCPU Long Task duration 1.202 s
2.2 sLayout Shift 0.00001 2.125 s
2.4 sLayout Shift 0.00159 2.330 s
2.5 sLayout Shift 0.00406 2.432 s
2.6 sLayout Shift 0.00560 2.534 s
2.7 sCPU Long Task duration 63 msLayout Shift 0.00986 2.673 s
3 sCPU Long Task duration 84 ms
3.1 sLayout Shift 0.07746 3.014 sLayout Shift 0.29921 3.098 s
3.2 sLast Visual Change 3.200 sVisual Complete 85% 3.200 sVisual Complete 95% 3.200 sVisual Complete 99% 3.200 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 (61)

TitleAdviceScore
Avoid slowing down the critical rendering path (avoidRenderBlocking)The page has 3 blocking requests and 9 in body parser blocking (9 JavaScript and 3 CSS).10
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/vol0/j/app.min.ad19a657450fb2cc.js
  • https://static-basket-01.wbbasket.ru/vol0/j/spa/index.min.aa870ba300f60fe3.js
  • https://static-basket-01.wbbasket.ru/vol0/j/swiper.min.7a55dc87e84f5c3f.js
  • https://static-basket-01.wbbasket.ru/vol0/j/spa/customTags/banners.min.fa5c594041669961.js
  • https://static-basket-01.wbbasket.ru/vol0/j/spa/customTags/lazyBlockLoader.min.6623456650f0eac0.js
  • https://static-basket-01.wbbasket.ru/vol0/j/spa/customTags/spa.tooltip.min.427c93e1900719eb.js
  • https://static-basket-01.wbbasket.ru/vol0/j/spa/customTags/spa.shortDeliveries.m...74ef15a1f2f942.js
  • https://static-basket-01.wbbasket.ru/vol0/r/js-templates-ru-ru.10.0.57.4.js
  • https://static-basket-01.wbbasket.ru/vol0/r/route-data-ru.10.0.57.4.js
  • Don't scale images in the browser (avoidScalingImages)The page has 6 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.40
    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/vol0/i/v3/header/logoWb.svg
  • https://static-basket-01.wbbasket.ru/vol1/crm-bnrs/bners1/2880_80_web_222.webp
  • https://static-basket-01.wbbasket.ru/vol1/crm-bnrs/bners1/FFD6F187-37E0-490A-B1B6-F40E8B13927D.webp
  • https://static-basket-01.wbbasket.ru/vol1/crm-bnrs/bners1/2880_vesna.webp
  • https://static-basket-01.wbbasket.ru/vol1/crm-bnrs/bners1/shoes_sale_2880.webp
  • https://static-basket-01.wbbasket.ru/vol1/crm-bnrs/bners1/2880_vesna.webp
  • Avoid CPU Long Tasks (longTasks)The page has 5 CPU long tasks with the total of 1.510 s. The total blocking time is 1.199 s and 2 long tasks before first contentful paint with total time of 161 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.0
    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:
  • unknown
  • self
  • self
  • self
  • unknown
  • 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/vol0/s/desktop/style/views/spa/main-v3.min.9cea5207d2254160.css
  • https://static-basket-01.wbbasket.ru/vol0/s/desktop/style/views/spa/common.min.614a75c33608de2a.css
  • https://static-basket-01.wbbasket.ru/vol0/s/desktop/style/views/site/main-page-v...29a1124914210.css
  • Avoid extra requests by setting cache headers (cacheHeaders)The page has 52 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.7 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/vol0/s/desktop/style/views/spa/main-v3.min.9cea5207d2254160.css
  • https://static-basket-01.wbbasket.ru/vol0/s/desktop/style/views/spa/common.min.614a75c33608de2a.css
  • https://static-basket-01.wbbasket.ru/vol0/s/desktop/style/views/site/main-page-v...29a1124914210.css
  • https://static-basket-01.wbbasket.ru/vol0/i/v3/header/logoWb.svg
  • https://static-basket-01.wbbasket.ru/vol1/crm-bnrs/adsf/1743162740984810182.jpg
  • https://static-basket-01.wbbasket.ru/vol0/i/blank.gif
  • https://static-basket-01.wbbasket.ru/vol0/j/app.min.ad19a657450fb2cc.js
  • https://static-basket-01.wbbasket.ru/vol0/j/spa/index.min.aa870ba300f60fe3.js
  • https://static-basket-01.wbbasket.ru/vol0/j/swiper.min.7a55dc87e84f5c3f.js
  • https://static-basket-01.wbbasket.ru/vol0/j/spa/customTags/banners.min.fa5c594041669961.js
  • https://static-basket-01.wbbasket.ru/vol0/j/spa/customTags/lazyBlockLoader.min.6623456650f0eac0.js
  • https://static-basket-01.wbbasket.ru/vol0/j/spa/customTags/spa.tooltip.min.427c93e1900719eb.js
  • https://static-basket-01.wbbasket.ru/vol0/i/v3/apps/qr-apps.svg
  • https://static-basket-01.wbbasket.ru/vol0/j/spa/customTags/spa.shortDeliveries.m...74ef15a1f2f942.js
  • https://static-basket-01.wbbasket.ru/vol0/r/js-templates-ru-ru.10.0.57.4.js
  • https://static-basket-01.wbbasket.ru/vol0/r/route-data-ru.10.0.57.4.js
  • https://static-basket-01.wbbasket.ru/vol0/l/als-hauss-vf.woff2
  • https://static-basket-01.wb.ru/vol1/global-payment/default-payment.json
  • https://static-basket-01.wbbasket.ru/vol0/j/spa/services/orderService.min.1ae4b06e459a9146.js
  • https://static-basket-01.wbbasket.ru/vol0/j/spa/services/wbxOrderService.min.a49817e336a3df91.js
  • https://static-basket-01.wbbasket.ru/vol0/data/settings-front-ru.json.hash
  • https://static-basket-01.wbbasket.ru/vol0/data/promotion-creatives.json.hash
  • https://static-basket-01.wbbasket.ru/vol0/data/cargo-delivery-stores-v2.json
  • https://static-basket-01.wbbasket.ru/vol0/data/stores-data.json
  • https://static-basket-01.wbbasket.ru/vol0/data/promotion-creatives.json
  • https://www.wildberries.ru/manifestv2.json
  • https://www.wildberries.ru/icon.svg
  • https://static-basket-01.wbbasket.ru/vol0/data/settings-front-ru.json
  • https://www.wildberries.ru/favicon.ico
  • https://static-basket-01.wbbasket.ru/vol0/j/spa/modules/searchInput/suggestionsH...1f418cdf2364df.js
  • https://static-basket-01.wbbasket.ru/vol0/t/jst/spahome-ru-ru.34c9e63907252df4.json
  • https://static-basket-01.wbbasket.ru/vol0/j/spa/models/home.min.e2f43dfe2689bab7.js
  • https://www.wildberries.ru/android-icon-144x144.png
  • https://user-geo-data.wildberries.ru/get-geo-info...s.ru/get-geo-info
  • https://banners-website.wildberries.ru/public/v1/banners...public/v1/banners
  • https://static-basket-01.wbbasket.ru/vol0/t/jst/catalogcard-ru-ru.801a44a5dcb78f19.json
  • https://static-basket-01.wbbasket.ru/vol0/t/jst/catalogcore-ru-ru.b3a09120c910d559.json
  • https://static-basket-01.wbbasket.ru/vol0/j/spa/customTags/spa.searchTags.min.8e915a967b6c8579.js
  • https://static-basket-01.wbbasket.ru/vol0/j/spa/modules/catalog_v2/goodsCatalog/...146221c01113f8.js
  • https://www.wildberries.ru/webapi/api/home/seo
  • https://static-basket-01.wbbasket.ru/vol0/data/main-menu-ru-ru-v3.json
  • https://static-basket-01.wbbasket.ru/vol0/t/jst/menutoptmpl-ru-ru.d7da992fc1c000da.json
  • https://banners-website.wildberries.ru/public/v1/banners...public/v1/banners
  • https://banners-website.wildberries.ru/public/v1/banners...public/v1/banners
  • https://www.wildberries.ru/webapi/api/home/seo
  • 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/vol0/data/menu/catalog/ekspress-dostavka.json
  • https://static-basket-01.wbbasket.ru/vol1/crm-bnrs/bners1/2880_vesna.webp
  • https://static-basket-01.wbbasket.ru/vol1/crm-bnrs/bners1/2880_80_web_222.webp
  • https://static-basket-01.wbbasket.ru/vol1/crm-bnrs/bners1/shoes_sale_2880.webp
  • https://static-basket-01.wbbasket.ru/vol1/crm-bnrs/bners1/FFD6F187-37E0-490A-B1B6-F40E8B13927D.webp
  • Total CSS size shouldn't be too big (cssSize)The total CSS transfer size is 137.7 kB and uncompressed size is 876 kB. 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/vol0/s/desktop/style/views/spa/main-v3.min.9cea5207d2254160.css 76.9 KB497.2 KB
    https://static-basket-01.wbbasket.ru/vol0/s/desktop/style/views/spa/common.min.614a75c33608de2a.css 51.9 KB315.5 KB
    https://static-basket-01.wbbasket.ru/vol0/s/desktop/style/views/site/main-page-v...29a1124914210.css 5.7 KB42.7 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 image size shouldn't be too big (imageSize)The page total image size is 778.3 kB. It's really big. Is the page using the right format for the images? Can they be lazy loaded? Are they compressed as good as they can be? Make them smaller by using https://imageoptim.com/.50
    Description: Avoid having too many large images on the page. The images will not affect the first paint of the page, but it will eat bandwidth for the user.
    Total JavaScript size shouldn't be too big (javascriptSize)The total JavaScript transfer size is 289.3 kB and the uncompressed size is 1.1 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/vol0/j/app.min.ad19a657450fb2cc.js 42.2 KB108.9 KB
    https://static-basket-01.wbbasket.ru/vol0/j/spa/index.min.aa870ba300f60fe3.js 135.7 KB541.4 KB
    https://static-basket-01.wbbasket.ru/vol0/j/swiper.min.7a55dc87e84f5c3f.js 26.6 KB103.4 KB
    https://static-basket-01.wbbasket.ru/vol0/j/spa/customTags/banners.min.fa5c594041669961.js 3.9 KB15.4 KB
    https://static-basket-01.wbbasket.ru/vol0/j/spa/customTags/lazyBlockLoader.min.6623456650f0eac0.js 382 B801 B
    https://static-basket-01.wbbasket.ru/vol0/j/spa/customTags/spa.tooltip.min.427c93e1900719eb.js 2.2 KB8.0 KB
    https://static-basket-01.wbbasket.ru/vol0/j/spa/customTags/spa.shortDeliveries.m...74ef15a1f2f942.js 1.4 KB4.8 KB
    https://static-basket-01.wbbasket.ru/vol0/r/js-templates-ru-ru.10.0.57.4.js 1.8 KB5.7 KB
    https://static-basket-01.wbbasket.ru/vol0/r/route-data-ru.10.0.57.4.js 17.7 KB109.9 KB
    https://static-basket-01.wbbasket.ru/vol0/j/spa/services/orderService.min.1ae4b06e459a9146.js 8.7 KB26.0 KB
    https://static-basket-01.wbbasket.ru/vol0/j/spa/services/wbxOrderService.min.a49817e336a3df91.js 11.4 KB36.0 KB
    https://static-basket-01.wbbasket.ru/vol0/j/spa/modules/searchInput/suggestionsH...1f418cdf2364df.js 2.1 KB5.3 KB
    https://static-basket-01.wbbasket.ru/vol0/j/spa/models/home.min.e2f43dfe2689bab7.js 7.4 KB24.5 KB
    https://static-basket-01.wbbasket.ru/vol0/j/spa/customTags/spa.searchTags.min.8e915a967b6c8579.js 525 B745 B
    https://static-basket-01.wbbasket.ru/vol0/j/spa/modules/catalog_v2/goodsCatalog/...146221c01113f8.js 20.6 KB97.0 KB
    Avoid using incorrect mime types (mimeTypes)The page has 4 misconfigured mime types. 96
    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/settings-front-ru.json
  • https://www.wildberries.ru/webapi/logging/jserror
  • https://www.wildberries.ru/webapi/logging/jserror
  • https://www.wildberries.ru/webapi/stats/events
  • Make each CSS response small (optimalCssSize)https://static-basket-01.wbbasket.ru/vol0/s/desktop/style/views/spa/main-v3.min.9cea5207d2254160.css size is 78.7 kB (78740) and that is bigger than the limit of 14.5 kB. https://static-basket-01.wbbasket.ru/vol0/s/desktop/style/views/spa/common.min.614a75c33608de2a.css size is 53.1 kB (53146) and that is bigger than the limit of 14.5 kB. Try to make the CSS files fit into 14.5 KB.80
    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/vol0/s/desktop/style/views/spa/main-v3.min.9cea5207d2254160.css 76.9 KB497.2 KB
    https://static-basket-01.wbbasket.ru/vol0/s/desktop/style/views/spa/common.min.614a75c33608de2a.css 51.9 KB315.5 KB
    Don't use private headers on static content (privateAssets)The page has 6 requests with private headers. Make sure that the assets really should be private and only used by one user. Otherwise, make it cacheable for everyone.40
    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/
  • https://www.wildberries.ru/manifestv2.json
  • https://www.wildberries.ru/icon.svg
  • https://www.wildberries.ru/android-icon-144x144.png
  • https://www.wildberries.ru/webapi/api/home/seo
  • https://www.wildberries.ru/webapi/api/home/seo
  • Avoid missing and error requests (responseOk)The page has 2 error responses. The page has 2 responses with code 405. 80
    Description: Your page should never request assets that return a 400 or 500 error. These requests are never cached. If that happens something is broken. Please fix it.
    Offenders:
  • https://main-page.wildberries.ru/api/v3/site-recommendation?count=1000&locale=ru
  • https://main-page.wildberries.ru/api/v3/site-recommendation?count=1000&locale=ru
  • Best practice advice (59)

    TitleAdviceScore
    Cumulative Layout Shift (cumulativeLayoutShift)You have a poor cumulative layout shift score (0.3978). It is in the Google Web Vitals poor range, with a shift higher than 0.25. You should manually check the filmstrip or video and check if it will affect the user.0
    Description: Cumulative Layout Shift measures the sum total of all individual layout shift scores for unexpected layout shift that occur. The metric is measuring visual stability by quantify how often users experience unexpected layout shifts. It is one of Google Web Vitals.
    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 title is too long by 19 characters. The recommended max is 6050
    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 (43 requests and 1.6 MB) then first party (18 requests and 95.3 kB). The page transfer more bytes from third party domains (1.6 MB) then first party (95.3 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 12 responses that sets both a max-age and expires header. There are 12 responses that sets a pragma no-cache header (that is a request header). There are 18 responses that sets a server header. 58
    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/
  • https://www.wildberries.ru/
  • https://www.wildberries.ru/
  • 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/favicon.ico
  • https://www.wildberries.ru/favicon.ico
  • https://www.wildberries.ru/favicon.ico
  • https://www.wildberries.ru/webapi/stats/pageview
  • https://www.wildberries.ru/webapi/stats/pageview
  • https://www.wildberries.ru/webapi/stats/pageview
  • 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://user-geo-data.wildberries.ru/get-geo-info...s.ru/get-geo-info
  • https://banners-website.wildberries.ru/public/v1/banners...public/v1/banners
  • https://main-page.wildberries.ru/api/v3/site-recommendation?count=1000&locale=ru
  • https://www.wildberries.ru/webapi/api/home/seo
  • https://www.wildberries.ru/webapi/api/home/seo
  • https://www.wildberries.ru/webapi/api/home/seo
  • 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/v1/banners...public/v1/banners
  • https://banners-website.wildberries.ru/public/v1/banners...public/v1/banners
  • https://main-page.wildberries.ru/api/v3/site-recommendation?count=1000&locale=ru
  • https://www.wildberries.ru/webapi/api/home/seo
  • https://www.wildberries.ru/webapi/api/home/seo
  • https://www.wildberries.ru/webapi/api/home/seo
  • 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/stats/events
  • https://www.wildberries.ru/webapi/stats/events
  • https://www.wildberries.ru/webapi/stats/events
  • 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/
  • 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Интернет-магазин Wildberries: широкий ассортимент товаров - скидки каждый день!
    Width1919
    Height912
    DOM elements852
    Avg DOM depth11
    Max DOM depth18
    Iframes0
    Script tags274
    Local storage41.3 KB
    Session storage273 B
    Network Information API4g
    Resource Hints
    preconnect
    https://static-basket-01.wbbasket.ru/
    https://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 | Interaction To Next Paint | Long Aninimation Frames | Metrics from CDP | 

    Visual Metrics

    Browser Metrics

    Google Web Vitals
    Time to first byte (TTFB)151 ms
    First Contentful Paint (FCP)488 ms
    Largest Contentful Paint (LCP)520 ms
    Cumulative Layout Shift (CLS)0.40
    Interaction to next paint (INP)120 ms
    Total Blocking Time (TBT)1.199 s
    First Contentful Paint info
    Elements that needed recalculate style before FCP1067
    Time spent in recalculate style before FCP49.333 ms
    Extra timings
    TTFB151 ms
    First Paint488 ms
    Load Event End671 ms
    Fully loaded3.585 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.

    Render time 520 ms
    Element render delay179 ms
    TTFB151 ms
    Resource delay13 ms
    Resource load duration177 ms
    Elements that needed recalculate style before LCP1067
    Time spent in recalculate style before LCP49.333 ms
    Element idbanner_70dcd333-5419-42b8-9288-9943709184a1
    Load time414 ms
    URL https://static-baske...2740984810182.jpg
    Size (width*height)241920
    DOM path
    <>
    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.39779 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.29921<div class="header__container"></div>,<div class="simple-menu__item header__currency j-b-header-country"></div>,<div id="mainContainer" class="main__container"></div>,<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="#29^/29^#30^/30^"></footer>
    body > div:eq(0) > header > div,body > div:eq(0) > header > div > div:eq(0) > div > div,body > div:eq(0) > main#body-layout > div#mainContainer,body > div:eq(0) > footer#footer
    0.07746<div id="mainContainer" class="main__container"></div>
    body > div:eq(0) > main#body-layout > div#mainContainer
    0.00986<div id="mainContainer" class="main__container"></div>
    body > div:eq(0) > main#body-layout > div#mainContainer
    0.00560
    0.00406
    0.00159
    0.00001<div class="simple-menu__item header__currency j-b-header-country"></div>
    body > div:eq(0) > header > div > div:eq(0) > div > div
    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.

    Interaction to Next Paint

    Interaction to Next Paint (INP) is a metric that try to measure responsiveness. It's useful if you are testing user journeys. Read more about Interaction to Next Paint.

    The measured latency was 120 ms.

    Event typepointerover
    Element typeMAIN
    Element class namemain left-bg
    Event target#body-layout
    Load state when the event happenedcomplete

    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
    1.153 s1.240 s1.3 ms1.2 ms0.1 ms
    https://static-basket-01.wbbasket.ru/vol0/j/spa/index.min.aa870ba300f60fe3.js

    Forced Style And Layout Duration: 3 ms

    Invoker:  TimerHandler:setTimeout
    Invoker Type: user-callback
    Window attribution: self
    Source char position: -1

    https://static-basket-01.wbbasket.ru/vol0/j/spa/index.min.aa870ba300f60fe3.js

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

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    48.2 ms90.3 ms12.1 ms12.1 ms0 ms
    https://static-basket-01.wbbasket.ru/vol0/j/spa/index.min.aa870ba300f60fe3.js

    Invoker:  https://static-basket-01.wbbasket.ru/vol0/j/spa/index.min.aa870ba300f60fe3.js
    Invoker Type: classic-script
    Window attribution: self

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    36.2 ms104.3 ms2.1 ms2.1 ms0 ms
    https://static-basket-01.wbbasket.ru/vol0/j/spa/index.min.aa870ba300f60fe3.js

    Forced Style And Layout Duration: 25 ms

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

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    34.8 ms105.9 ms0.9 ms0.9 ms0 ms
    No availible script information.
    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    30.6 ms182.1 ms70.6 ms0.1 ms70.5 ms
    No availible script information.
    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    13.9 ms136.8 ms0.5 ms0.5 ms0 ms
    https://static-basket-01.wbbasket.ru/vol0/j/spa/index.min.aa870ba300f60fe3.js

    Forced Style And Layout Duration: 14 ms

    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 ms61.4 ms1.9 ms1.9 ms0 ms
    https://static-basket-01.wbbasket.ru/vol0/j/app.min.ad19a657450fb2cc.js

    Invoker:  https://static-basket-01.wbbasket.ru/vol0/j/app.min.ad19a657450fb2cc.js
    Invoker Type: classic-script
    Window attribution: self

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    0 ms44.4 ms7.6 ms7.5 ms0.1 ms
    https://static-basket-01.wbbasket.ru/vol0/j/spa/index.min.aa870ba300f60fe3.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 ms100.1 ms1.5 ms1.4 ms0.1 ms
    No availible script information.
    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    0 ms100.2 ms1.3 ms1.2 ms0.1 ms
    No availible script information.

    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
    Documents18
    Frames18
    JSEventListeners191
    LayoutObjects1262
    MediaKeySessions0
    MediaKeys0
    Nodes3155
    Resources43
    ContextLifecycleStateObservers25
    V8PerContextDatas1
    WorkerGlobalScopes0
    UACSSResources0
    RTCPeerConnections0
    ResourceFetchers18
    AdSubframes0
    DetachedScriptStates2
    ArrayBufferContents0
    LayoutCount33
    RecalcStyleCount62
    LayoutDuration52
    RecalcStyleDuration111
    DevToolsCommandDuration27
    ScriptDuration156
    V8CompileDuration1
    TaskDuration3052
    TaskOtherDuration2705
    ThreadTime3
    ProcessTime5
    JSHeapUsedSize18046680
    JSHeapTotalSize52781056
    FirstMeaningfulPaint487
    | 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 requests61
    Total domains6
    Total transfer size1.6 MB
    Total content size8.4 MB
    Responses missing compression33
    Number of cookies0
    Third party cookies0
    Requests per response code
    20058
    2041
    4052

    Largest assets on the page (by transfer size)

    Requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b22.5 KB88.2 KB1
    css0 b134.5 KB855.4 KB3
    javascript0 b282.5 KB1.1 MB15
    image0 b679.5 KB678.1 KB7
    font0 b134.5 KB134.4 KB1
    svg0 b18.0 KB81.9 KB3
    json0 b353.2 KB5.5 MB22
    plain0 b338 B32 B2
    other0 b0 b0 b4
    favicon0 b15.7 KB15.0 KB1
    Total0 b1.6 MB8.4 MB59

    Data per domain

    DomainTotal download timeTransfer SizeContent SizeRequests
    www.wildberries.ru742 ms65.2 KB136.2 KB12
    static-basket-01.wbbasket.ru2.494 s1.5 MB8.0 MB42
    static-basket-01.wb.ru132 ms415 B323 B1
    user-geo-data.wildberries.ru190 ms617 B369 B1
    banners-website.wildberries.ru329 ms27.3 KB194.2 KB3
    main-page.wildberries.ru230 ms0 b0 b2

    Expires and last modified statistics

    typeminmedianmax
    Expires0 seconds0 seconds0 seconds
    Last modified2 minutes5 weeks45 weeks

    Requests loaded after onLoad event

    Included requests done after load event end.

    ContentTransfer SizeRequests
    html0 b0
    css0 b0
    javascript30.6 KB4
    image506.5 KB5
    font0 b0
    json136.0 KB18
    svg1.4 KB1
    favicon15.7 KB1
    other0 b3
    Total690.2 KB34

    Requests loaded after onContentLoad

    Includes requests done after DOM content loaded.

    ContentTransfer SizeRequests
    html0 b0
    css0 b0
    javascript30.6 KB4
    image506.5 KB5
    font0 b0
    plain338 B2
    json352.8 KB21
    other0 b4
    svg1.4 KB1
    favicon15.7 KB1
    Total907.3 KB40

    Render blocking requests

    Render blocking information directly from Chrome.

    BlockingIn body parser blockingPotentially blocking
    390

    Render information

    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 1199
    Max Potential First Input Delay 1202
    Long Tasks before First Paint2161
    Long Tasks before First Contentful Paint2161
    Long Tasks before Largest Contentful Paint2161
    Long Tasks after Load Event End31349
    Total Long Tasks51510

    CPU last long task happened at 2.927 s

    Individual Long Tasks

    namestartTimedurationcontainerIdcontainerNamecontainerSrccontainerType
    unknown33775window
    self48286window
    self9221202window
    self260863window
    unknown292784window

    CPU time spent

    Calculated using Tracium.

    Categories (ms)
    parseHTML52
    styleLayout174
    paintCompositeRender22
    scriptParseCompile1
    scriptEvaluation1622
    garbageCollection42
    other1172
    Events (ms)
    RunMicrotasks1466
    RunTask1124
    v8.run124
    UpdateLayoutTree109
    Layout57
    ParseHTML37
    FunctionCall15
    V8.GC_SCAVENGER_SCAVENGE_PARALLEL14
    HTMLDocumentParser::MaybeFetchQueuedPreloads12

    Time spent per request

    URLCPU time (ms)
    https://static-basket-01.wbbasket.ru/vol0/j/spa/index.min.aa870ba300f60fe3.js95
    https://static-basket-01.wbbasket.ru/vol0/j/app.min.ad19a657450fb2cc.js38

    CPU time spent

    Tool/domainTime (ms)
    static-basket-01.wbbasket.ru132.8
    | 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
    static-basket-01.wb.ru

    First party requests and sizes per content type

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

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b22.5 KB88.2 KB1
    css0 b0 b0 b0
    javascript0 b0 b0 b0
    image0 b16.7 KB16.1 KB1
    font0 b0 b0 b0
    json0 b36.8 KB210.0 KB9
    svg0 b1.4 KB1.5 KB1
    favicon0 b15.7 KB15.0 KB1
    other0 b0 b0 b3
    TotalN/A93.0 KB330.8 KB18

    Third party requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b0 b0 b0
    css0 b134.5 KB855.4 KB3
    javascript0 b282.5 KB1.1 MB15
    image0 b662.8 KB662.0 KB6
    font0 b134.5 KB134.4 KB1
    svg0 b16.7 KB80.4 KB2
    json0 b316.4 KB5.3 MB13
    plain0 b338 B32 B2
    other0 b0 b0 b1
    TotalN/A1.5 MB8.0 MB43
    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: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1
    • <a rel="nofollow" href="/services/voprosy-i-otvety">Вопросы и ответы</a>
    • <label for="hd-1">Юридическая информация</label>
    • <a rel="nofollow" target="_blank" href="https://seller.wildberries.ru/">Продавать товары</a>
    • <a rel="nofollow" target="_blank" href="https://point-promo.wb.ru/">Открыть пункт выдачи</a>
    • <a rel="nofollow" target="_blank" href="https://rent.wildberries.ru/promo/">Предложить помещение</a>
    • <label for="hd-2">Развозить грузы</label>
    • <label for="hd-3">Доставлять заказы </label>
    • <a rel="nofollow" target="_blank" href="https://it-school.wildberries.ru/">WH School</a>
    • <a rel="nofollow" target="_blank" href="https://guru.wildberries.ru/?utm_source=main_footer">WB Guru</a>
    • <a rel="nofollow" target="_blank" href="/promo/wb-stream">WB Stream</a>
    • <a rel="nofollow" href="/services/o-nas">О нас</a>
    • <a rel="nofollow" href="/presservice">Пресс-служба</a>
    • <a rel="nofollow" href="/services/kontakty">Контакты</a>
    • <a rel="nofollow" target="_blank" href="https://vsemrabota.ru/">Вакансии</a>
    • <a rel="nofollow" href="/services/hotline">Сообщить о мошенничестве</a>
    • <span>© Wildberries 2004–2025.<span> Все права защищены.</span></span>
    • <span> Все права защищены.</span>
    • <span>Применяются <a href="/services/pravila-primeneniya-rekomendatelnyh-tehnologiy" class="footer__link">рекомендательные технологии</a></span>
    • <a href="/services/pravila-primeneniya-rekomendatelnyh-tehnologiy" class="footer__link">рекомендательные технологии</a>
    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: #F700DB; --custom-promo-filter-switch-color: #BABABF; --custom-promo-filter-switch-background: #FFFFFF;">
    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
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="1111"> <a href="/promotions/shans-on" class="menu-burger__main-list-link menu-burger__main-list-link--1111 ">РАСПРОДАЖА</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="1234"> <a href="/gift/certificates" class="menu-burger__main-list-link menu-burger__main-list-link--1234 ">Сертификаты Wildberries</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="1235"> <a href="/promotions/trend" class="menu-burger__main-list-link menu-burger__main-list-link--1235 ">Тренд</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item" data-menu-id="131387"> <a href="/promotions/dobroshrift" class="menu-burger__main-list-link menu-burger__main-list-link--131387">Доброшрифт</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="306"> <a href="/catalog/zhenshchinam" class="menu-burger__main-list-link menu-burger__main-list-link--306 menu-burger__main-list-link--disable-link">Женщинам</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="629"> <a href="/catalog/obuv" class="menu-burger__main-list-link menu-burger__main-list-link--629 menu-burger__main-list-link--disable-link">Обувь</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="115"> <a href="/catalog/detyam" class="menu-burger__main-list-link menu-burger__main-list-link--115 menu-burger__main-list-link--disable-link">Детям</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="566"> <a href="/catalog/muzhchinam" class="menu-burger__main-list-link menu-burger__main-list-link--566 menu-burger__main-list-link--disable-link">Мужчинам</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="258"> <a href="/catalog/dom-i-dacha" class="menu-burger__main-list-link menu-burger__main-list-link--258 menu-burger__main-list-link--disable-link">Дом</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="543"> <a href="/catalog/krasota" class="menu-burger__main-list-link menu-burger__main-list-link--543 menu-burger__main-list-link--disable-link">Красота</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="1"> <a href="/catalog/aksessuary" class="menu-burger__main-list-link menu-burger__main-list-link--1 menu-burger__main-list-link--disable-link">Аксессуары</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="4830"> <a href="/catalog/elektronika" class="menu-burger__main-list-link menu-burger__main-list-link--4830 menu-burger__main-list-link--disable-link">Электроника</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="481"> <a href="/catalog/igrushki" class="menu-burger__main-list-link menu-burger__main-list-link--481 menu-burger__main-list-link--disable-link">Игрушки</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="62827"> <a href="/catalog/dom/mebel" class="menu-burger__main-list-link menu-burger__main-list-link--62827 menu-burger__main-list-link--disable-link">Мебель</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="62057"> <a href="/catalog/aksessuary/tovary-dlya-vzroslyh" class="menu-burger__main-list-link menu-burger__main-list-link--62057 menu-burger__main-list-link--disable-link">Товары для взрослых</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="10296"> <a href="/catalog/pitanie" class="menu-burger__main-list-link menu-burger__main-list-link--10296 menu-burger__main-list-link--disable-link">Продукты</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="131286"> <a href="/catalog/tsvety" class="menu-burger__main-list-link menu-burger__main-list-link--131286 ">Цветы</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="16107"> <a href="/catalog/bytovaya-tehnika" class="menu-burger__main-list-link menu-burger__main-list-link--16107 menu-burger__main-list-link--disable-link">Бытовая техника</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="6119"> <a href="/catalog/tovary-dlya-zhivotnyh" class="menu-burger__main-list-link menu-burger__main-list-link--6119 menu-burger__main-list-link--disable-link">Зоотовары</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="784"> <a href="/catalog/sport" class="menu-burger__main-list-link menu-burger__main-list-link--784 menu-burger__main-list-link--disable-link">Спорт</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="6994"> <a href="/catalog/aksessuary/avtotovary" class="menu-burger__main-list-link menu-burger__main-list-link--6994 menu-burger__main-list-link--disable-link">Автотовары</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="130624"> <a href="/catalog/transportnye-sredstva" class="menu-burger__main-list-link menu-burger__main-list-link--130624 ">Транспортные средства</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="519"> <a href="/catalog/knigi" class="menu-burger__main-list-link menu-burger__main-list-link--519 menu-burger__main-list-link--disable-link">Книги</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="1023"> <a href="/catalog/yuvelirnye-ukrasheniya" class="menu-burger__main-list-link menu-burger__main-list-link--1023 menu-burger__main-list-link--disable-link">Ювелирные изделия</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="17006"> <a href="/catalog/dom-i-dacha/instrumenty" class="menu-burger__main-list-link menu-burger__main-list-link--17006 menu-burger__main-list-link--disable-link">Для ремонта</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="4863"> <a href="/catalog/dachniy-sezon" class="menu-burger__main-list-link menu-burger__main-list-link--4863 menu-burger__main-list-link--disable-link">Сад и дача</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="10326"> <a href="/catalog/dom-i-dacha/zdorove" class="menu-burger__main-list-link menu-burger__main-list-link--10326 menu-burger__main-list-link--disable-link">Здоровье</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="131840"> <a href="/catalog/lekarstvennye-preparaty" class="menu-burger__main-list-link menu-burger__main-list-link--131840 ">Лекарственные препараты</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="5486"> <a href="/catalog/knigi-i-diski/kantstovary" class="menu-burger__main-list-link menu-burger__main-list-link--5486 menu-burger__main-list-link--disable-link">Канцтовары</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="131450"> <a href="/catalog/sdelano-v-rossii" class="menu-burger__main-list-link menu-burger__main-list-link--131450 menu-burger__main-list-link--disable-link">Сделано в России</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="131111"> <a href="/catalog/kulturnyy-kod" class="menu-burger__main-list-link menu-burger__main-list-link--131111 menu-burger__main-list-link--disable-link">Культурный код</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="2192"> <a href="/promotions" class="menu-burger__main-list-link menu-burger__main-list-link--2192 ">Акции</a> </li>
    • <li class="menu-burger__main-list-item j-menu-main-item " data-menu-id="62813"> <a href="https://digital.wildberries.ru" class="menu-burger__main-list-link menu-burger__main-list-link--62813 ">Цифровые товары</a> </li>