Run 2 summary

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

Tested 2025-04-01 15:26:44 using Chrome 134.0.6998.35 (runtime settings).

SummaryWaterfall MetricsFilmstrip CoachPageXrayCPU Third partyScreenshotsaxe

Summary

MetricValue
Page metrics
Performance score60
Total page size1.6 MB
Requests132
Timing metrics
TTFB790 ms
First Paint2.624 s
Fully Loaded19.036 s
Google Web Vitals
TTFB790 ms
First Contentful Paint (FCP) 2.624 s
Largest Contentful Paint (LCP) 19.400 s
Cumulative Layout Shift (CLS) 0.76
Total Blocking Time1.273 s
Max Potential FID1.003 s
CPU metrics
CPU long tasks7
CPU last long task happens at17.772 s
Visual Metrics
First Visual Change2.634 s
Speed Index5.300 s
Visual Complete 85%5.234 s
Visual Complete 99%15.700 s
Last Visual Change15.800 s
Screenshot
| Waterfall | | Download HAR | 

Waterfall

| Filmstrip | 

Filmstrip

Use--filmstrip.showAll to show all filmstrips.

0 s
2.7 sFirst Contentful Paint 2.624 sFirst Visual Change 2.634 s
2.8 s
2.9 s
3 s
3.1 s
3.2 s
3.3 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 84 ms
4.7 sCPU Long Task duration 57 msDOM Content Loaded Time 4.661 s
4.8 s
4.9 s
5 s
5.1 s
5.2 s
5.3 sVisual Complete 85% 5.234 s
5.4 s
5.5 s
5.6 s
5.7 s
5.8 s
5.9 s
6 sCPU Long Task duration 51 ms
6.1 s
6.2 s
6.3 s
6.4 sVisual Complete 95% 6.367 s
6.5 s
6.6 s
6.7 s
6.8 s
7 sCPU Long Task duration 1.003 s
8 s
8.1 sCPU Long Task duration 63 ms
8.2 s
8.3 s
8.4 s
8.5 s
8.6 sCPU Long Task duration 109 ms
8.7 s
8.8 s
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 sPage Load Time 10.345 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 s
12.1 s
12.2 s
12.3 s
12.4 s
12.5 s
12.6 s
12.7 s
12.8 s
12.9 s
13 s
13.1 s
13.2 s
13.3 s
13.4 s
13.5 s
13.6 s
13.7 s
13.8 s
13.9 s
14 s
14.1 s
14.2 s
14.3 s
14.4 s
14.5 s
14.6 s
14.7 s
15.7 sVisual Complete 99% 15.700 s
15.8 sLast Visual Change 15.800 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.cf8a25c94bce40782201.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/index.688389c2e4e79bdf27f8.js
  • https://static-basket-01.wbbasket.ru/vol2/site/r/route-data.11-18-2.9f8aadb9.js
  • Don't scale images in the browser (avoidScalingImages)The page has 5 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.50
    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://basket-08.wbbasket.ru/vol1132/part113256/113256091/images/big/1.webp
  • 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 can be improved (2.624 s). It is in the Google Web Vitals needs improvement range, slower than 1.8 seconds.50
    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 19.400 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://basket-08.wbbasket.ru/vol1132/part113256/113256091/images/big/1.webp
  • Avoid CPU Long Tasks (longTasks)The page has 7 CPU long tasks with the total of 1.623 s. The total blocking time is 1.273 s . 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:
  • self
  • self
  • self
  • self
  • 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...dff604c4ce437.css
  • https://static-basket-01.wbbasket.ru/vol2/site/app/modal.75158a0f0d1d2f230958.css
  • https://static-basket-01.wbbasket.ru/vol2/site/app/generalPreloader.afe2ccfd4a81a33f9c85.css
  • Avoid extra requests by setting cache headers (cacheHeaders)The page has 103 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.5 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...dff604c4ce437.css
  • https://static-basket-01.wbbasket.ru/vol2/site/j/app.7c55f47880e103d84bab.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/lang/ru.cf8a25c94bce40782201.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/index.688389c2e4e79bdf27f8.js
  • https://static-basket-01.wbbasket.ru/vol2/site/r/route-data.11-18-2.9f8aadb9.js
  • 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.ffd26956e5972c51bbda.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/services/wbxOrderService.d4...df6737b0015eac.js
  • https://static-basket-01.wbbasket.ru/vol2/site/t/jst/menuLk.04a33c67.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://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/spaproductcard.055055b5.json
  • https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/views/site/produc...27f77a20a58d7.css
  • https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/modules/popups/pr...5cf98cb97df57.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.4bc19de80a075cf97d63.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://static-basket-01.wbbasket.ru/vol2/site/j/spa/customTags/banners.473830efc3430176d1b8.js
  • 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://banners-website.wildberries.ru/public/v2/banners...public/v2/banners
  • 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://static-basket-01.wbbasket.ru/vol0/data/no-return-subjects.json
  • https://catalog.wb.ru/menu/v11/api?locale=ru&lang=ru&id=131289&collapse&dest=-1255987
  • 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/j/spa/modules/uploadImageForSearc...db4e8069618937.js
  • 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
  • https://www.wildberries.ru/manifestv2.json
  • https://www.wildberries.ru/icon.svg
  • https://www.wildberries.ru/favicon.ico
  • https://www.wildberries.ru/android-icon-144x144.png
  • https://static-basket-01.wbbasket.ru/vol2/site/t/jst/onlineChatPopup.5577172b.json
  • https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/modules/popups/ch...4cd109248f542.css
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/onlineChat/onlineCh...47791157e0d4ac.js
  • https://card.wb.ru/cards/v2/detail...u/cards/v2/detail
  • https://card.wb.ru/cards/v2/detail...u/cards/v2/detail
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/services/feedbacks/feedback...cb26866c1fe975.js
  • https://static-basket-01.wbbasket.ru/vol2/site/t/jst/suppliersInfoHelper.65f6ae8c.json
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/productCard/supplie...7b91297342ffa2.js
  • https://static-basket-01.wbbasket.ru/vol2/site/t/jst/productCardSizes.53c79041.json
  • https://static-basket-01.wbbasket.ru/vol2/site/t/jst/productCardPrice.03376e89.json
  • https://static-basket-01.wbbasket.ru/vol2/site/t/jst/productSelectionManager.06071415.json
  • https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/modules/productSe...bcf5963968639.css
  • https://static-basket-01.wbbasket.ru/vol2/site/t/jst/productCardOrderGood.02ab7ea2.json
  • https://static-basket-01.wbbasket.ru/vol2/site/t/jst/deliveryInfoHelper.f9182082.json
  • https://static-basket-01.wbbasket.ru/vol2/site/t/jst/productCardPoned.4fdcbdac.json
  • https://static-basket-01.wbbasket.ru/vol2/site/t/jst/productCardImageGallery.1672052a.json
  • https://static-basket-01.wbbasket.ru/vol2/site/t/jst/miniProductCard.371deb79.json
  • https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/modules/miniProdu...7fc3e07a2d343.css
  • https://static-basket-01.wbbasket.ru/vol2/site/t/jst/sellerAndBrand.edf5da8e.json
  • https://static-basket-01.wbbasket.ru/vol2/site/t/jst/productCardPriceBottomPanel.4287ad4a.json
  • https://static-basket-01.wbbasket.ru/vol2/site/app/modal.75158a0f0d1d2f230958.css
  • https://static-basket-01.wbbasket.ru/vol2/site/app/generalPreloader.afe2ccfd4a81a33f9c85.css
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/productCard/product...614d623ad31bf6.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/productCard/product...562de2fb72b648.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/productCard/product...c1d781f51f7c0d.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/productCard/product...79e4916b81d227.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/productCard/deliver...90199b26d46257.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/productCard/product...51ab14e846c3b0.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/customTags/spa.zoomImage.0c...b95b0c09345f29.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/customTags/spa.videoPlayer....8e98825b9fb9ff.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/customTags/spa.imageTags.af...5e459fb15fa974.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/productCard/product...41e085933695de.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/productCard/product...c362f79238c25a.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/productCard/product...fc7d6419734c12.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/miniProductCard/min...1379ef3605d71d.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/productCard/sellerA...7b7a540ff33047.js
  • https://static-basket-01.wbbasket.ru/vol2/site/j/spa/services/promotions/promoti...7a977027dfdcdc.js
  • https://static-basket-01.wbbasket.ru/vol2/site/app/mo-icons.02d8c937f3a6935d28a6.js
  • https://static-basket-01.wbbasket.ru/vol2/site/app/react-vendors.4463b5fe473e03f21749.js
  • https://www.wildberries.ru/webapi/product/113256091/data?subject=54&kind=2&brand=4603&lang=ru
  • https://static-basket-01.wbbasket.ru/vol0/data/brands-by-id/4603.json
  • https://static-basket-03.wbbasket.ru/vol40/content/subjects/54.json
  • https://static-basket-01.wbbasket.ru/vol2/site/t/jst/productCardColors.35ff0394.json
  • https://static-basket-01.wbbasket.ru/vol2/site/t/jst/catalogCard.01942f86.json
  • https://static-basket-01.wbbasket.ru/vol2/site/t/jst/recommendationsList.9acf850b.json
  • https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/modules/popups/ad...6ec42e543d6b6.css
  • https://static-basket-01.wbbasket.ru/vol2/site/t/jst/priceHistoryChart.9e96d3d2.json
  • https://static-basket-01.wbbasket.ru/vol2/site/app/mo-ui.38343c4bc6cf2fb98261.js
  • https://static-basket-01.wbbasket.ru/vol2/site/app/modal-component.f6534ac3e151f22dbe74.js
  • Long cache headers is good (cacheHeadersLong)The page has 8 requests that have a shorter cache time than 30 days (but still a cache time).92
    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
  • https://pow.wildberries.ru/scripts/solve.wasm?7b450d09
  • https://basket-08.wbbasket.ru/vol1132/part113256/113256091/images/big/1.webp
  • https://basket-08.wbbasket.ru/vol1132/part113256/113256091/info/price-history.json
  • Total CSS size shouldn't be too big (cssSize)The total CSS transfer size is 189.9 kB and uncompressed size is 1.3 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...dff604c4ce437.css 81.7 KB542.5 KB
    https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/views/site/produc...27f77a20a58d7.css 66.9 KB477.3 KB
    https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/modules/popups/pr...5cf98cb97df57.css 16.5 KB87.6 KB
    https://static-basket-01.wbbasket.ru/vol2/site/s/spa/modules/uploadImageForSearc...ae50b44a28588.css 1.2 KB4.6 KB
    https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/modules/popups/ch...4cd109248f542.css 10.4 KB76.9 KB
    https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/modules/productSe...bcf5963968639.css 413 B749 B
    https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/modules/miniProdu...7fc3e07a2d343.css 6.3 KB25.8 KB
    https://static-basket-01.wbbasket.ru/vol2/site/app/modal.75158a0f0d1d2f230958.css 614 B1.4 KB
    https://static-basket-01.wbbasket.ru/vol2/site/app/generalPreloader.afe2ccfd4a81a33f9c85.css 928 B6.2 KB
    https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/modules/popups/ad...6ec42e543d6b6.css 532 B1.1 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 789 kB and the uncompressed size is 2.9 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.cf8a25c94bce40782201.js 84.2 KB362.5 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/index.688389c2e4e79bdf27f8.js 144.3 KB563.9 KB
    https://static-basket-01.wbbasket.ru/vol2/site/r/route-data.11-18-2.9f8aadb9.js 16.9 KB81.4 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.ffd26956e5972c51bbda.js 11.3 KB35.8 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/services/wbxOrderService.d4...df6737b0015eac.js 13.9 KB45.1 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/customTags/lazyBlockLoader....90a678955c61ae.js 500 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 671 B983 B
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/customTags/spa.tooltip.d1551932ebb94b589950.js 2.7 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 965 B2.0 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/models/product.4bc19de80a075cf97d63.js 14.5 KB62.5 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...db4e8069618937.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://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/onlineChat/onlineCh...47791157e0d4ac.js 12.0 KB39.3 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
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/services/feedbacks/feedback...cb26866c1fe975.js 886 B1.8 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/productCard/supplie...7b91297342ffa2.js 1.5 KB4.1 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/productCard/product...614d623ad31bf6.js 2.0 KB6.1 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/productCard/product...562de2fb72b648.js 2.3 KB7.7 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/productCard/product...c1d781f51f7c0d.js 3.7 KB12.7 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/productCard/product...79e4916b81d227.js 2.7 KB9.8 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/productCard/deliver...90199b26d46257.js 1.0 KB2.9 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/productCard/product...51ab14e846c3b0.js 1.7 KB5.4 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/customTags/spa.zoomImage.0c...b95b0c09345f29.js 1.0 KB2.6 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/customTags/spa.videoPlayer....8e98825b9fb9ff.js 1.3 KB4.2 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/customTags/spa.imageTags.af...5e459fb15fa974.js 2.8 KB13.6 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/productCard/product...41e085933695de.js 30.7 KB117.5 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/productCard/product...c362f79238c25a.js 1.5 KB4.6 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/productCard/product...fc7d6419734c12.js 2.5 KB7.8 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/miniProductCard/min...1379ef3605d71d.js 4.5 KB16.0 KB
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/modules/productCard/sellerA...7b7a540ff33047.js 550 B830 B
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/services/promotions/promoti...7a977027dfdcdc.js 1.1 KB1.9 KB
    https://static-basket-01.wbbasket.ru/vol2/site/app/mo-icons.02d8c937f3a6935d28a6.js 7.9 KB27.0 KB
    https://static-basket-01.wbbasket.ru/vol2/site/app/react-vendors.4463b5fe473e03f21749.js 40.6 KB132.9 KB
    https://static-basket-01.wbbasket.ru/vol2/site/app/mo-ui.38343c4bc6cf2fb98261.js 18.3 KB137.8 KB
    https://static-basket-01.wbbasket.ru/vol2/site/app/modal-component.f6534ac3e151f22dbe74.js 1.1 KB2.1 KB
    Avoid using incorrect mime types (mimeTypes)The page has 8 misconfigured mime types. 92
    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://pow.wildberries.ru/scripts/solve.wasm?7b450d09
  • https://www.wildberries.ru/webapi/logging/jserror
  • https://points.wb.ru/points-users-api/api/v1/w/promotion/available
  • https://points.wb.ru/points-users-api/api/v1/w/promotion/available
  • Make each CSS response small (optimalCssSize)https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/views/spa/main-v3.4dd52e6dff604c4ce437.css size is 83.6 kB (83630) 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.9e68e5127f77a20a58d7.css size is 68.5 kB (68528) 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.06a13995cf98cb97df57.css size is 16.9 kB (16935) 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...dff604c4ce437.css 81.7 KB542.5 KB
    https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/views/site/produc...27f77a20a58d7.css 66.9 KB477.3 KB
    https://static-basket-01.wbbasket.ru/vol2/site/s/desktop/style/modules/popups/pr...5cf98cb97df57.css 16.5 KB87.6 KB
    Don't use private headers on static content (privateAssets)The page has 6 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.50
    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://pow.wildberries.ru/api/v1/js-settings
  • 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/product/113256091/data?subject=54&kind=2&brand=4603&lang=ru
  • Best practice advice (59)

    TitleAdviceScore
    Cumulative Layout Shift (cumulativeLayoutShift)You have a poor cumulative layout shift score (0.7638). 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 26 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 (112 requests and 1.5 MB) then first party (20 requests and 248.5 kB). The page transfer more bytes from third party domains (1.5 MB) then first party (248.5 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 19 responses that sets both a max-age and expires header. There are 15 responses that sets a pragma no-cache header (that is a request header). There are 27 responses that sets a server header. 39
    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/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://banners-website.wildberries.ru/public/v2/banners...public/v2/banners
  • https://www.wildberries.ru/webapi/stats/pageview
  • https://www.wildberries.ru/webapi/stats/pageview
  • https://www.wildberries.ru/webapi/stats/pageview
  • https://catalog.wb.ru/menu/v11/api?locale=ru&lang=ru&id=131289&collapse&dest=-1255987
  • 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://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/android-icon-144x144.png
  • https://www.wildberries.ru/android-icon-144x144.png
  • https://www.wildberries.ru/android-icon-144x144.png
  • 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
  • https://pow.wildberries.ru/scripts/solve.wasm?7b450d09
  • https://pow.wildberries.ru/scripts/solve.wasm?7b450d09
  • https://pow.wildberries.ru/api/v1/client/verify-answer
  • https://pow.wildberries.ru/api/v1/client/verify-answer
  • https://pow.wildberries.ru/api/v1/client/verify-answer
  • https://www.wildberries.ru/webapi/logging/jserror
  • https://www.wildberries.ru/webapi/logging/jserror
  • https://www.wildberries.ru/webapi/logging/jserror
  • https://card.wb.ru/cards/v2/detail...u/cards/v2/detail
  • https://card.wb.ru/cards/v2/detail...u/cards/v2/detail
  • https://points.wb.ru/points-users-api/api/v1/w/promotion/available
  • https://points.wb.ru/points-users-api/api/v1/w/promotion/available
  • https://points.wb.ru/points-users-api/api/v1/w/promotion/available
  • https://points.wb.ru/points-users-api/api/v1/w/promotion/available
  • https://www.wildberries.ru/webapi/product/113256091/data?subject=54&kind=2&brand=4603&lang=ru
  • https://www.wildberries.ru/webapi/product/113256091/data?subject=54&kind=2&brand=4603&lang=ru
  • https://www.wildberries.ru/webapi/product/113256091/data?subject=54&kind=2&brand=4603&lang=ru
  • 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Кольцо золотое 585 SOKOLOV 113256091 купить за 6 203 ₽ в интернет-магазине Wildberries
    Width485
    Height2073
    DOM elements1769
    Avg DOM depth12
    Max DOM depth23
    Iframes0
    Script tags794
    Local storage95.8 KB
    Session storage409 B
    Network Information API4g
    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)790 ms
    First Contentful Paint (FCP)2.624 s
    Largest Contentful Paint (LCP)19.400 s
    Cumulative Layout Shift (CLS)0.76
    Total Blocking Time (TBT)1.273 s
    First Contentful Paint info
    Elements that needed recalculate style before FCP163
    Time spent in recalculate style before FCP23.147 ms
    Extra timings
    TTFB790 ms
    First Paint2.624 s
    Load Event End10.345 s
    Fully loaded19.036 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 typeVIDEO
    Element/tag<video playsinline="" class="wb-player__video j-wb-video-player" data-link="id{: ~tagCtx.props.playerId} src{: ~tagCtx.props.src} {on 'loadedmetadata' ~tag.setDuration} {on 'timeupdate' ~tag.updateProgress} {on 'loadedmetadata' ~tag.switchLoadedStatus} {on 'error' ~tag.showErrorLabel}" poster="https://basket-08.wbbasket.ru/vol1132/part113256/113256091/images/big/1.webp" preload="none" muted="" id="cardVideoPlayer" src="https://videonme-basket-08.wbbasket.ru/vol91/part11325/113256091/hls/1440p/index.m3u8" data-jsv="#227^/227^#228^/228^#229^/229^#230^/230^"></video>
    Render time 19.400 s
    Element render delay27 ms
    TTFB790 ms
    Resource delay17.045 s
    Resource load duration1.538 s
    Elements that needed recalculate style before LCP473
    Time spent in recalculate style before LCP49.743 ms
    Element idcardVideoPlayer
    Load time19.374 s
    URL https://basket-08.wb...images/big/1.webp
    Size (width*height)313628
    DOM path
    div:eq(0) > main#body-layout > div#mainContainer > div#app > div:eq(2) > div#31e97340-8ba3-5c6a-fa43-0d3600526f06 > div:eq(2) > div:eq(0) > div > div:eq(1) > div#f1b68010-c016-35ed-f088-60dc29d1ef33 > div > div > div:eq(0) > ul > li:eq(0) > div > div > div:eq(1) > video#cardVideoPlayer> div:eq(0) > main#body-layout > div#mainContainer > div#app > div:eq(2) > div#31e97340-8ba3-5c6a-fa43-0d3600526f06 > div:eq(2) > div:eq(0) > div > div:eq(1) > div#f1b68010-c016-35ed-f088-60dc29d1ef33 > div > div > div:eq(0) > ul > li:eq(0) > div > div > div:eq(1) > video#cardVideoPlayer>
    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.76381 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.76381<div id="mainContainer" class="main__container"></div>,<footer class="footer j-footer footer-ru footer--padding" id="footer" data-link=" {on 'click' '.j-dropdown-title' ~root.onMenuSelected} {on 'click' '.j-wba-footer-item' ~root.sendStatEvent}" data-jsv="#65^/65^#66^/66^"></footer>
    body > div:eq(0) > main#body-layout > div#mainContainer,body > div:eq(0) > footer#footer
    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.4 ms1.014 s0 ms0 ms0 ms
    No availible script information.
    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    962.1 ms1.016 s8.9 ms0 ms8.9 ms
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/index.688389c2e4e79bdf27f8.js

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

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    210 ms257 ms3.8 ms3.2 ms0.6 ms

    Forced Style And Layout Duration: 55 ms

    Invoker:  SCRIPT[src=https://static-basket-01.wbbasket.ru/vol2/site/j/spa/services/promotions/promotionsService.84f9197a977027dfdcdc.js].onload
    Invoker Type: event-listener
    Window attribution: self
    Source char position: -1

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    72.8 ms126.2 ms0 ms0 ms0 ms
    No availible script information.
    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    60.8 ms123.8 ms1.1 ms0 ms1.1 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
    35.1 ms99.1 ms0.2 ms0 ms0.2 ms
    https://static-basket-01.wbbasket.ru/vol2/site/j/lang/ru.cf8a25c94bce40782201.js

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

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

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

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    24.2 ms84.6 ms10.3 ms10.3 ms0 ms

    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: 39 ms

    Invoker:  SCRIPT[src=https://static-basket-01.wbbasket.ru/vol2/site/j/spa/customTags/banners.473830efc3430176d1b8.js].onload
    Invoker Type: event-listener
    Window attribution: self
    Source char position: -1

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    8.5 ms58.5 ms0 ms0 ms0 ms
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/index.688389c2e4e79bdf27f8.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
    7.6 ms58.2 ms0.2 ms0.1 ms0.1 ms
    https://static-basket-01.wbbasket.ru/vol2/site/r/route-data.11-18-2.9f8aadb9.js

    Invoker:  #document.onDOMContentLoaded
    Invoker Type: event-listener
    Window attribution: self
    Source char position: -1

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    2.6 ms56.4 ms0.8 ms0.8 ms0 ms
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/index.688389c2e4e79bdf27f8.js

    Forced Style And Layout Duration: 1 ms

    Invoker:  Response.json.then
    Invoker Type: resolve-promise
    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
    Documents50
    Frames33
    JSEventListeners385
    LayoutObjects932
    MediaKeySessions0
    MediaKeys0
    Nodes4613
    Resources166
    ContextLifecycleStateObservers83
    V8PerContextDatas1
    WorkerGlobalScopes0
    UACSSResources0
    RTCPeerConnections0
    ResourceFetchers50
    AdSubframes0
    DetachedScriptStates0
    ArrayBufferContents7
    LayoutCount21
    RecalcStyleCount66
    LayoutDuration33
    RecalcStyleDuration170
    DevToolsCommandDuration34
    ScriptDuration438
    V8CompileDuration3
    TaskDuration5296
    TaskOtherDuration4619
    ThreadTime6
    ProcessTime8
    JSHeapUsedSize26112144
    JSHeapTotalSize59064320
    FirstMeaningfulPaint2622
    | 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 requests132
    Total domains11
    Total transfer size1.6 MB
    Total content size10.1 MB
    Responses missing compression74
    Number of cookies0
    Third party cookies0
    Requests per response code
    200128
    2044

    Largest assets on the page (by transfer size)

    Requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b11.0 KB33.3 KB1
    css0 b185.4 KB1.2 MB10
    javascript399 B770.5 KB2.8 MB46
    image0 b25.0 KB24.4 KB6
    font0 b134.7 KB134.4 KB1
    json0 b390.0 KB5.6 MB51
    other0 b150.0 KB342.6 KB8
    plain942 B180 B16 B7
    svg0 b1.4 KB1.5 KB1
    favicon0 b15.7 KB15.0 KB1
    Total1.3 KB1.6 MB10.1 MB132

    Data per domain

    DomainTotal download timeTransfer SizeContent SizeRequests
    www.wildberries.ru5.055 s49.5 KB69.6 KB12
    static-basket-01.wbbasket.ru56.528 s1.3 MB9.3 MB93
    a.wb.ru5.579 s2.1 KB5.8 KB7
    user-geo-data.wildberries.ru2.856 s616 B369 B1
    basket-08.wbbasket.ru4.625 s3.4 KB13.3 KB4
    banners-website.wildberries.ru1.956 s10.2 KB56.2 KB1
    catalog.wb.ru1.538 s49.5 KB207.1 KB1
    pow.wildberries.ru3.811 s182.4 KB418.0 KB6
    card.wb.ru968 ms5.6 KB26.5 KB2
    points.wb.ru3.455 s530 B44 B4
    static-basket-03.wbbasket.ru1.154 s500 B476 B1

    Expires and last modified statistics

    typeminmedianmax
    Expires0 seconds0 seconds1 day
    Last modified2 minutes5 weeks1 year

    Requests loaded after onLoad event

    Included requests done after load event end.

    ContentTransfer SizeRequests
    html0 b0
    css19.1 KB6
    javascript171.4 KB24
    image16.7 KB2
    font0 b0
    json34.5 KB27
    svg1.4 KB1
    favicon15.7 KB1
    other150.0 KB4
    Total408.8 KB65

    Requests loaded after onContentLoad

    Includes requests done after DOM content loaded.

    ContentTransfer SizeRequests
    html0 b0
    css103.7 KB9
    javascript433.0 KB39
    image25.0 KB6
    font0 b0
    json389.4 KB49
    other150.0 KB8
    plain180 B7
    svg1.4 KB1
    favicon15.7 KB1
    Total1.1 MB120

    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...c2e4e79bdf27f8.jsin_body_parser_blocking
    https://static-baske...ls-hauss-vf.woff2non_blocking
    https://static-baske...c94bce40782201.jsin_body_parser_blocking
    https://static-baske...dff604c4ce437.cssblocking
    https://static-baske...27f77a20a58d7.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...-18-2.9f8aadb9.jsin_body_parser_blocking
    https://static-baske...5cf98cb97df57.cssdynamically_injected_non_blocking
    https://static-baske...e80a075cf97d63.jsnon_blocking
    https://static-baske...df6737b0015eac.jsnon_blocking
    https://static-baske...47791157e0d4ac.jsnon_blocking
    https://static-baske...56e5972c51bbda.jsnon_blocking
    https://static-baske...4cd109248f542.cssdynamically_injected_non_blocking
    https://static-baske...efc3430176d1b8.jsnon_blocking
    https://pow.wildberr...ipts/wasm_exec.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...db4e8069618937.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 1273
    Max Potential First Input Delay 1003
    Long Tasks before First Paint00
    Long Tasks before First Contentful Paint00
    Long Tasks before Largest Contentful Paint71623
    Long Tasks after Load Event End1256
    Total Long Tasks71623

    CPU last long task happened at 17.772 s

    Individual Long Tasks

    namestartTimedurationcontainerIdcontainerNamecontainerSrccontainerType
    self456884window
    self466157window
    self597451window
    self69781003window
    self804463window
    self8552109window
    self17772256window

    CPU time spent

    Calculated using Tracium.

    Categories (ms)
    parseHTML51
    styleLayout228
    paintCompositeRender139
    scriptParseCompile4
    scriptEvaluation2727
    garbageCollection48
    other1504
    Events (ms)
    RunMicrotasks2311
    RunTask1316
    v8.run281
    UpdateLayoutTree170
    PrePaint79
    FunctionCall74
    Paint66
    PaintImage62
    Commit50
    Layout49
    ParseHTML35
    Layerize33
    V8.GC_SCAVENGER_SCAVENGE_PARALLEL24
    TimerFire19
    v8.callFunction15

    Time spent per request

    URLCPU time (ms)
    https://static-basket-01.wbbasket.ru/vol2/site/j/video.ffd883509e5b3f97914a.js176
    https://static-basket-01.wbbasket.ru/vol2/site/j/spa/index.688389c2e4e79bdf27f8.js133
    https://a.wb.ru/sdk/sdk.js37
    https://static-basket-01.wbbasket.ru/vol2/site/j/app.7c55f47880e103d84bab.js29

    CPU time spent

    Tool/domainTime (ms)
    static-basket-01.wbbasket.ru337.1
    a.wb.ru37.0
    | 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
    card.wb.ru
    points.wb.ru
    static-basket-03.wbbasket.ru

    First party requests and sizes per content type

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

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b11.0 KB33.3 KB1
    css0 b0 b0 b0
    javascript0 b29.8 KB74.7 KB2
    image0 b16.7 KB16.1 KB1
    font0 b0 b0 b0
    other0 b150.0 KB342.6 KB4
    json0 b18.2 KB60.9 KB10
    svg0 b1.4 KB1.5 KB1
    favicon0 b15.7 KB15.0 KB1
    TotalN/A242.7 KB544.2 KB20

    Third party requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b0 b0 b0
    css0 b185.4 KB1.2 MB10
    javascript399 B740.7 KB2.7 MB44
    image0 b8.3 KB8.3 KB5
    font0 b134.7 KB134.4 KB1
    json0 b371.8 KB5.5 MB41
    other0 b0 b0 b4
    plain942 B180 B16 B7
    Total1.2 KB1.4 MB9.6 MB112
    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>
    Links must have discernible text (cat.name-role-value,wcag2a,wcag244,wcag412,section508,section508.22.a,TTv5,TT6.a,EN-301-549,EN-9.2.4.4,EN-9.4.1.2,ACT) - link-nameEnsure links have discernible text
    Fix all of the following: Element is in tab order and does not have accessible text Fix any of the following: Element does not have text that is visible to screen readers aria-label attribute does not exist or is empty aria-labelledby attribute does not exist, references elements that do not exist or references elements that are empty Element has no title attribute
    • <a href="/seller/125043" class="seller-info__link j-wba-card-item j-wba-card-item-show j-wba-card-item-observe" data-name-for-wba="Item_Seller_Info_GoToShop" data-link="{on 'click' ~root.$analitic.proceedAndSave 'ISC' null null ~product.nmId}{on sendClickEvent}" data-jsv="#529^/529^#530^/530^"></a>
    Interactive controls must not be nested (cat.keyboard,wcag2a,wcag412,TTv5,TT6.a,EN-301-549,EN-9.4.1.2) - nested-interactiveEnsure interactive controls are not nested as they are not always announced by screen readers or can cause focus problems for assistive technologies
    Fix any of the following: Element has focusable descendants
    • <div class="wb-player__container overlayed" role="button" data-link=" {on ~tag.changePlayStatus} class{merge: (~tagCtx.props.useOverlay &amp;&amp; ~tagCtx.props.videoModel.isPause &amp;&amp; ~tag.isAvailable) toggle='overlayed'}" data-jsv="#223^/223^">
    moderate
    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">