Run 2 summary

https://sokolov.ru/

Tested 2025-04-03 02:25:56 using Chrome 134.0.6998.35 (runtime settings).

SummaryWaterfall MetricsFilmstrip CoachPageXrayCPU Third partyScreenshotsaxe

Summary

MetricValue
Page metrics
Performance score62
Total page size2.5 MB
Requests99
Timing metrics
TTFB184 ms
First Paint840 ms
Fully Loaded2.361 s
Google Web Vitals
TTFB184 ms
First Contentful Paint (FCP) 840 ms
Largest Contentful Paint (LCP) 1.504 s
Cumulative Layout Shift (CLS) 0.02
336 ms
Total Blocking Time183 ms
Max Potential FID216 ms
CPU metrics
CPU long tasks6
CPU last long task happens at1.888 s
Visual Metrics
First Visual Change834 ms
Speed Index1.487 s
Visual Complete 85%1.467 s
Visual Complete 99%2.767 s
Last Visual Change2.900 s
Screenshot
| Waterfall | | Download HAR | 

Waterfall

| Filmstrip | 

Filmstrip

Use--filmstrip.showAll to show all filmstrips.

0 s
0.5 sCPU Long Task duration 61 ms
0.6 sDOM Content Loaded Time 530 msPage Load Time 533 msCPU Long Task duration 205 ms
0.8 sCPU Long Task duration 264 ms
0.9 sFirst Visual Change 834 msFirst Contentful Paint 840 ms
1.1 s
1.2 s
1.3 sLayout Shift 0.00009 1.254 sCPU Long Task duration 56 ms
1.4 s
1.5 sVisual Complete 85% 1.467 sLayout Shift 0.00083 1.491 s
1.6 sLCP <DIV> 1.504 sLayout Shift 0.00366 1.555 sCPU Long Task duration 61 ms
1.7 s
1.8 sZone 1.736 sZone:ZoneAwarePromise 1.737 sZone:toString 1.738 sZone:util 1.738 sZone:legacy 1.739 sZone:timers 1.739 sZone:requestAnimationFrame 1.739 sZone:blocking 1.739 sZone:EventTarget 1.739 sZone:MutationObserver 1.740 sLayout Shift 0.01103 1.784 s
1.9 sLayout Shift 0.00063 1.813 sVisual Complete 95% 1.834 sCPU Long Task duration 216 ms
2 s
2.1 s
2.2 sLayout Shift 0.00050 2.144 s
2.4 sFully Loaded 2.361 s
2.5 s
2.6 s
2.7 s
2.8 sVisual Complete 99% 2.767 s
2.9 sLast Visual Change 2.900 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 (62)

TitleAdviceScore
Don't scale images in the browser (avoidScalingImages)The page has 10 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.0
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://cdn.sokolov.ru/upload/content/area/2de813168cfab95263a0021f90209577.jpg
  • https://cdn.sokolov.ru/upload/content/area/f77c187c912eed81b9a940d56f4e733f.jpg
  • https://cdn.sokolov.ru/upload/content/area/29692ce29bea0ed9fc48a32b78e96577.jpg
  • https://cdn.sokolov.ru/upload/content/area/599381a89a12f2135e4cc41d907c53af.jpg
  • https://cdn.sokolov.ru/upload/content/area/7b737af32bfdf0a9756be23dad1122fa.jpg
  • https://cdn.sokolov.ru/upload/content/area/aacd8376c5eeab8dec4904e69f2fa2d7.jpg
  • https://cdn.sokolov.ru/upload/content/area/d50e7d97286724aca1441de191909703.jpg
  • https://cdn.sokolov.ru/upload/content/area/4a175e582f4323dd74687852cf297369.jpg
  • https://cdn.sokolov.ru/upload/content/area/4754f43eedc890535a35cd5d5da5b413.jpg
  • https://cdn.sokolov.ru/upload/content/area/7730846614634f1e713444e0c80a2198.jpg
  • Avoid using Google Tag Manager. (googleTagManager)The page is using Google Tag Manager, this is a performance risk since non-tech users can add JavaScript to your page.0
    Description: Google Tag Manager makes it possible for non tech users to add scripts to your page that will downgrade performance.
    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.
    Avoid CPU Long Tasks (longTasks)The page has 12 CPU long tasks with the total of 1.549 s. The total blocking time is 569 ms and 3 long tasks before first contentful paint with total time of 530 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:
  • self
  • self
  • self
  • self
  • self
  • self
  • self
  • self
  • self
  • self
  • multiple-contexts
  • self
  • Avoid Frontend single point of failures (spof)The page has 14 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.70
    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-catalog.sokolov.ru/_next/static/css/d952859c721b8e52.css
  • https://static-catalog.sokolov.ru/_next/static/css/753a88f965ca8564.css
  • https://static-catalog.sokolov.ru/_next/static/css/7e6914a619aaaccf.css
  • https://static-catalog.sokolov.ru/_next/static/css/13226014bc357e4b.css
  • https://static-catalog.sokolov.ru/_next/static/css/f2f640d30117f472.css
  • https://static-catalog.sokolov.ru/_next/static/css/d67471c075b0c8ff.css
  • https://static-catalog.sokolov.ru/_next/static/css/a6a191b9c8b7721f.css
  • https://static-catalog.sokolov.ru/_next/static/css/7d06de3534181a6c.css
  • https://static-catalog.sokolov.ru/_next/static/css/29d30e70ddab6860.css
  • https://static-catalog.sokolov.ru/_next/static/css/dc41697283a04350.css
  • https://static-catalog.sokolov.ru/_next/static/css/5513378153b0b486.css
  • https://code.jivo.ru/css/c2eb44a/widget.css
  • https://code.jivo.ru/css/c2eb44a/omnichannelMenu.widget.css
  • https://personalization-web-stable.mindbox.ru/js/service/styles.css?v=4.50.11
  • Avoid extra requests by setting cache headers (cacheHeaders)The page has 17 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 20.1 kB 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://sokolov.ru/api/v4/content/area/main-banner-004/
  • https://sokolov.ru/api/v4/content/area/main-stories/
  • https://sokolov.ru/api/v4/content/area/navigation-block-008/
  • https://sokolov.ru/api/v5/profile/
  • https://sokolov.ru/api/v5/profile/products/
  • https://sokolov.ru/api/v5/handbooks/currency-rates/
  • https://sokolov.ru/api/v5/location/check/
  • https://sokolov.ru/api/v4/content/area/nav-buttons/
  • https://seo.sokolov.ru/api/v1/meta/ip/
  • https://static-catalog.sokolov.ru/meta/manifest.json
  • https://sokolov.ru/api/v4/content/area/main-page-topline/
  • https://sokolov.ru/api/v4/content/area/feedback-channels/
  • https://sokolov.ru/api/v4/content/area/download-app-banner/
  • https://static-catalog.sokolov.ru/meta/favicon.ico
  • https://tracking.diginetica.net/csc-event...ica.net/csc-event
  • https://tracking.diginetica.net/csc-event...ica.net/csc-event
  • https://tracking.diginetica.net/csc-event...ica.net/csc-event
  • Long cache headers is good (cacheHeadersLong)The page has 1 request that have a shorter cache time than 30 days (but still a cache time).99
    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://cdn.diginetica.net/300/client-lite.js
  • Total CSS size shouldn't be too big (cssSize)The total CSS transfer size is 113.8 kB and uncompressed size is 779.2 kB. That is big and the CSS could most probably be smaller.50
    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-catalog.sokolov.ru/_next/static/css/d952859c721b8e52.css 68.7 KB553.4 KB
    https://static-catalog.sokolov.ru/_next/static/css/753a88f965ca8564.css 6.1 KB30.0 KB
    https://static-catalog.sokolov.ru/_next/static/css/7e6914a619aaaccf.css 6.3 KB35.5 KB
    https://static-catalog.sokolov.ru/_next/static/css/13226014bc357e4b.css 19.7 KB118.1 KB
    https://static-catalog.sokolov.ru/_next/static/css/f2f640d30117f472.css 1.2 KB1.9 KB
    https://static-catalog.sokolov.ru/_next/static/css/d67471c075b0c8ff.css 1.3 KB2.1 KB
    https://static-catalog.sokolov.ru/_next/static/css/a6a191b9c8b7721f.css 2.9 KB9.9 KB
    https://static-catalog.sokolov.ru/_next/static/css/7d06de3534181a6c.css 1.1 KB1.6 KB
    https://static-catalog.sokolov.ru/_next/static/css/29d30e70ddab6860.css 1.5 KB4.4 KB
    https://static-catalog.sokolov.ru/_next/static/css/dc41697283a04350.css 1.5 KB3.1 KB
    https://static-catalog.sokolov.ru/_next/static/css/5513378153b0b486.css 951 B1.1 KB
    The favicon should be small and cacheable (favicon)The favicon has no cache time. 50
    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://static-catalog.sokolov.ru/meta/favicon.ico
  • Avoid too many fonts (fewFonts)The page has 4 font requests. Do you really need them? What value does the fonts give the user?60
    Description: How many fonts do you need on a page for the user to get the message? Fonts can slow down the rendering of content, try to avoid loading too many of them because worst case it can make the text invisible until they are loaded (FOIT—flash of invisible text), best case they will flicker the text content when they arrive.
    Offenders:
  • https://cdn.sokolov.ru/fonts/montserrat/bold.woff2
  • https://cdn.sokolov.ru/fonts/montserrat/regular.woff2
  • https://cdn.sokolov.ru/fonts/montserrat/medium.woff2
  • https://cdn.sokolov.ru/fonts/montserrat/semibold.woff2
  • Total image size shouldn't be too big (imageSize)The page total image size is 1.2 MB. 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 1.1 MB and the uncompressed size is 2.7 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-catalog.sokolov.ru/_next/static/chunks/webpack-f797a152e73f2687.js 8.6 KB15.5 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/framework-12a8921dab738876.js 66.5 KB204.9 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/main-8933f27b2dfdcc1f.js 32.3 KB109.0 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/pages/_app-e38b532025f7a780.js 190.0 KB666.7 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/4643-847f3cc1031a7680.js 35.9 KB120.5 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/1389-6de8ec0aad0d4042.js 18.0 KB61.7 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/1109-14835968bbd7d3d9.js 10.7 KB32.1 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/8335-c458fe87981e67b6.js 13.6 KB39.7 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/3273-b4365f7fa2b69ffc.js 7.0 KB17.6 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/4965-ab9f88dcd4930cbb.js 396.1 KB535.3 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/7905-0ee747b64d6af721.js 10.9 KB38.4 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/4430-fec7fc68247a3218.js 30.8 KB115.3 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/pages/main/client-41975b885cb0db05.js 956 B638 B
    https://static-catalog.sokolov.ru/_next/static/PFO5q9Vag2hlNUbM4R6cx/_buildManifest.js 2.2 KB5.3 KB
    https://static-catalog.sokolov.ru/_next/static/PFO5q9Vag2hlNUbM4R6cx/_ssgManifest.js 615 B77 B
    https://static-catalog.sokolov.ru/_next/static/chunks/5672.b06c04c9f0cd7c2d.js 2.3 KB4.1 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/1541.3c00a3e5a0af43e2.js 2.0 KB3.4 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/3333.bd960628a8b8e1b3.js 15.9 KB50.6 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/7811.4e161b19d93bd228.js 2.0 KB3.3 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/1571.a1b61b0957d9338f.js 3.0 KB5.3 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/7152.6296268524cf9ad9.js 1.6 KB2.0 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/566.0c0417b504718185.js 1.0 KB784 B
    https://static-catalog.sokolov.ru/_next/static/chunks/5355.983e781220919010.js 1.1 KB903 B
    https://static-catalog.sokolov.ru/_next/static/chunks/8316.2f0baf6b0adfaf4f.js 1.1 KB824 B
    https://static-catalog.sokolov.ru/_next/static/chunks/4803.a81bac4a22023b4a.js 1013 B673 B
    https://static-catalog.sokolov.ru/_next/static/chunks/4349.cde88d58e567c71a.js 782 B280 B
    https://static-catalog.sokolov.ru/_next/static/chunks/9436-8b7e73a429627c4a.js 6.7 KB15.6 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/7413.07cdcc44c06b3a97.js 7.9 KB21.7 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/9843.ca968b13efa7ff3b.js 1.9 KB3.4 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/4100.32b68982a7d87933.js 1.1 KB824 B
    https://static-catalog.sokolov.ru/_next/static/chunks/6503.06cb04399386cb06.js 1.0 KB724 B
    https://static-catalog.sokolov.ru/_next/static/chunks/8114.18f858da31fff1c0.js 980 B612 B
    https://static-catalog.sokolov.ru/_next/static/chunks/5123.a7ad076cb54663ae.js 26.9 KB80.1 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/91f5892f.ceac726038f76803.js 746 B260 B
    https://static-catalog.sokolov.ru/_next/static/chunks/1423.9d0bbe34be4659f7.js 9.2 KB32.3 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/9359.67c08b6f61cb7304.js 31.7 KB108.5 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/8005.7672b23712230e28.js 2.7 KB6.1 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/4379.021e104d0f1004dc.js 1.4 KB1.4 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/6611.a6ac3b8b55b95e77.js 1.4 KB1.5 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/6422.ae882f6609710448.js 1.1 KB1.0 KB
    https://cdn.diginetica.net/300/client-lite.js 77.2 KB301.4 KB
    Avoid using incorrect mime types (mimeTypes)The page has 1 misconfigured mime type. 99
    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://seo.sokolov.ru/api/v1/meta/ip/
  • Make each CSS response small (optimalCssSize)https://static-catalog.sokolov.ru/_next/static/css/d952859c721b8e52.css size is 70.3 kB (70327) and that is bigger than the limit of 14.5 kB. https://static-catalog.sokolov.ru/_next/static/css/13226014bc357e4b.css size is 20.1 kB (20122) 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-catalog.sokolov.ru/_next/static/css/d952859c721b8e52.css 68.7 KB553.4 KB
    https://static-catalog.sokolov.ru/_next/static/css/13226014bc357e4b.css 19.7 KB118.1 KB
    Total page size shouldn't be too big (pageSize)The page total transfer size is 2.6 MB, which is more than the coach limit of 2 MB. That is really big and you need to make it smaller.0
    Description: Avoid having pages that have a transfer size over the wire of more than 2 MB (desktop) and 1 MB (mobile) because that is really big and will hurt performance and will make the page expensive for the user if she/he pays for the bandwidth.
    Offenders:
    URLTransfer sizeContent size
    https://sokolov.ru/ 10.1 KB57.5 KB
    https://cdn.sokolov.ru/fonts/montserrat/bold.woff2 52.1 KB51.7 KB
    https://cdn.sokolov.ru/fonts/montserrat/regular.woff2 52.2 KB51.8 KB
    https://cdn.sokolov.ru/fonts/montserrat/medium.woff2 51.9 KB51.6 KB
    https://cdn.sokolov.ru/fonts/montserrat/semibold.woff2 52.0 KB51.7 KB
    https://static-catalog.sokolov.ru/_next/static/css/d952859c721b8e52.css 68.7 KB553.4 KB
    https://static-catalog.sokolov.ru/_next/static/css/753a88f965ca8564.css 6.1 KB30.0 KB
    https://static-catalog.sokolov.ru/_next/static/css/7e6914a619aaaccf.css 6.3 KB35.5 KB
    https://static-catalog.sokolov.ru/_next/static/css/13226014bc357e4b.css 19.7 KB118.1 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/webpack-f797a152e73f2687.js 8.6 KB15.5 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/framework-12a8921dab738876.js 66.5 KB204.9 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/main-8933f27b2dfdcc1f.js 32.3 KB109.0 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/pages/_app-e38b532025f7a780.js 190.0 KB666.7 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/4643-847f3cc1031a7680.js 35.9 KB120.5 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/1389-6de8ec0aad0d4042.js 18.0 KB61.7 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/1109-14835968bbd7d3d9.js 10.7 KB32.1 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/8335-c458fe87981e67b6.js 13.6 KB39.7 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/3273-b4365f7fa2b69ffc.js 7.0 KB17.6 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/4965-ab9f88dcd4930cbb.js 396.1 KB535.3 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/7905-0ee747b64d6af721.js 10.9 KB38.4 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/4430-fec7fc68247a3218.js 30.8 KB115.3 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/pages/main/client-41975b885cb0db05.js 956 B638 B
    https://static-catalog.sokolov.ru/_next/static/PFO5q9Vag2hlNUbM4R6cx/_buildManifest.js 2.2 KB5.3 KB
    https://static-catalog.sokolov.ru/_next/static/PFO5q9Vag2hlNUbM4R6cx/_ssgManifest.js 615 B77 B
    https://static-catalog.sokolov.ru/_next/static/css/f2f640d30117f472.css 1.2 KB1.9 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/5672.b06c04c9f0cd7c2d.js 2.3 KB4.1 KB
    https://static-catalog.sokolov.ru/_next/static/css/d67471c075b0c8ff.css 1.3 KB2.1 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/1541.3c00a3e5a0af43e2.js 2.0 KB3.4 KB
    https://static-catalog.sokolov.ru/_next/static/css/a6a191b9c8b7721f.css 2.9 KB9.9 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/3333.bd960628a8b8e1b3.js 15.9 KB50.6 KB
    https://static-catalog.sokolov.ru/_next/static/css/7d06de3534181a6c.css 1.1 KB1.6 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/7811.4e161b19d93bd228.js 2.0 KB3.3 KB
    https://static-catalog.sokolov.ru/_next/static/css/29d30e70ddab6860.css 1.5 KB4.4 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/1571.a1b61b0957d9338f.js 3.0 KB5.3 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/7152.6296268524cf9ad9.js 1.6 KB2.0 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/566.0c0417b504718185.js 1.0 KB784 B
    https://static-catalog.sokolov.ru/_next/static/chunks/5355.983e781220919010.js 1.1 KB903 B
    https://static-catalog.sokolov.ru/_next/static/chunks/8316.2f0baf6b0adfaf4f.js 1.1 KB824 B
    https://static-catalog.sokolov.ru/_next/static/chunks/4803.a81bac4a22023b4a.js 1013 B673 B
    https://sokolov.ru/api/v4/content/area/main-banner-004/ 2.1 KB8.0 KB
    https://sokolov.ru/api/v4/content/area/main-stories/ 3.1 KB13.4 KB
    https://sokolov.ru/api/v4/content/area/navigation-block-008/ 1.9 KB7.5 KB
    https://sokolov.ru/api/v5/profile/ 669 B69 B
    https://sokolov.ru/api/v6/basket/easy-calculate/ 1.2 KB363 B
    https://sokolov.ru/api/v5/profile/products/ 985 B40 B
    https://sokolov.ru/api/v5/handbooks/currency-rates/ 527 B155 B
    https://sokolov.ru/api/v5/location/check/ 998 B128 B
    https://static-catalog.sokolov.ru/_next/static/chunks/4349.cde88d58e567c71a.js 782 B280 B
    https://static-catalog.sokolov.ru/_next/static/chunks/9436-8b7e73a429627c4a.js 6.7 KB15.6 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/7413.07cdcc44c06b3a97.js 7.9 KB21.7 KB
    https://static-catalog.sokolov.ru/_next/static/css/dc41697283a04350.css 1.5 KB3.1 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/9843.ca968b13efa7ff3b.js 1.9 KB3.4 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/4100.32b68982a7d87933.js 1.1 KB824 B
    https://static-catalog.sokolov.ru/_next/static/chunks/6503.06cb04399386cb06.js 1.0 KB724 B
    https://sokolov.ru/api/v4/content/area/nav-buttons/ 1.3 KB2.6 KB
    https://seo.sokolov.ru/api/v1/meta/ip/ 0 b0 b
    https://seo.sokolov.ru/api/v1/meta/ip/ 232 B56 B
    https://static-catalog.sokolov.ru/meta/manifest.json 899 B716 B
    https://sokolov.ru/api/v4/content/area/main-page-topline/ 1.0 KB1.3 KB
    https://sokolov.ru/api/v4/content/area/feedback-channels/ 1.0 KB2.4 KB
    https://sokolov.ru/api/v4/content/area/download-app-banner/ 1.2 KB2.0 KB
    https://static-catalog.sokolov.ru/meta/favicon.ico 3.7 KB14.7 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/8114.18f858da31fff1c0.js 980 B612 B
    https://cdn.sokolov.ru/upload/content/area/69911f3f22faa94347bc746b3f592195.jpg?w=1920&h=844 254.1 KB253.5 KB
    https://cdn.sokolov.ru/upload/content/area/775c747bf67bd4d157930acef1994e33.jpg?w=1920&h=844 190.4 KB189.9 KB
    https://cdn.sokolov.ru/upload/content/area/afe9a0521a1e5677ce1ed6c6edbca9c1.jpg?w=1920&h=844 161.7 KB161.3 KB
    https://cdn.sokolov.ru/upload/content/area/68e58dc20cbd461fd14fc683592fca9b.svg 716 B946 B
    https://cdn.sokolov.ru/upload/content/area/1f1f79322c6d27b1dbbf009d9094f0b1.svg 593 B561 B
    https://cdn.sokolov.ru/upload/content/area/26ad66b0f0bb1efbb0aea1b0aeac800a.svg 759 B997 B
    https://cdn.sokolov.ru/upload/content/area/b832960c3f0c40480c9293e5b3b5f089.svg 717 B872 B
    https://cdn.sokolov.ru/upload/content/area/062aa6f7bd9925ab496599d8f10203d0.svg 659 B803 B
    https://cdn.sokolov.ru/upload/content/area/f4d1232004ddb92acb6e26f924872b61.svg 640 B841 B
    https://cdn.sokolov.ru/upload/content/area/2025c736f68b3ec222a8edf16fdca38f.svg 757 B1.3 KB
    https://cdn.sokolov.ru/upload/content/area/ed05b31c2846fae9c5fa8f5e313560fc.svg 497 B342 B
    https://static-catalog.sokolov.ru/_next/static/chunks/5123.a7ad076cb54663ae.js 26.9 KB80.1 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/91f5892f.ceac726038f76803.js 746 B260 B
    https://static-catalog.sokolov.ru/_next/static/chunks/1423.9d0bbe34be4659f7.js 9.2 KB32.3 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/9359.67c08b6f61cb7304.js 31.7 KB108.5 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/8005.7672b23712230e28.js 2.7 KB6.1 KB
    https://cdn.sokolov.ru/upload/content/area/f77c187c912eed81b9a940d56f4e733f.jpg 13.3 KB13.1 KB
    https://cdn.sokolov.ru/upload/content/area/29692ce29bea0ed9fc48a32b78e96577.jpg 76.5 KB76.2 KB
    https://cdn.sokolov.ru/upload/content/area/599381a89a12f2135e4cc41d907c53af.jpg 40.4 KB40.1 KB
    https://cdn.sokolov.ru/upload/content/area/7b737af32bfdf0a9756be23dad1122fa.jpg 109.5 KB109.1 KB
    https://cdn.sokolov.ru/upload/content/area/aacd8376c5eeab8dec4904e69f2fa2d7.jpg 8.1 KB7.8 KB
    https://cdn.sokolov.ru/upload/content/area/d50e7d97286724aca1441de191909703.jpg 4.9 KB4.6 KB
    https://cdn.sokolov.ru/upload/content/area/4a175e582f4323dd74687852cf297369.jpg 153.4 KB153.0 KB
    https://cdn.sokolov.ru/upload/content/area/4754f43eedc890535a35cd5d5da5b413.jpg 61.0 KB60.7 KB
    https://cdn.sokolov.ru/upload/content/area/7730846614634f1e713444e0c80a2198.jpg 49.8 KB49.5 KB
    https://cdn.sokolov.ru/upload/content/area/de6daf5ac89f1e0522d9cf7a2728609a.png 6.0 KB5.8 KB
    https://cdn.sokolov.ru/upload/content/area/dfd375aa4e2f3c311213d48422039027.jpg 30.4 KB30.1 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/4379.021e104d0f1004dc.js 1.4 KB1.4 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/6611.a6ac3b8b55b95e77.js 1.4 KB1.5 KB
    https://static-catalog.sokolov.ru/_next/static/css/5513378153b0b486.css 951 B1.1 KB
    https://static-catalog.sokolov.ru/_next/static/chunks/6422.ae882f6609710448.js 1.1 KB1.0 KB
    https://cdn.sokolov.ru/upload/content/area/2de813168cfab95263a0021f90209577.jpg 18.3 KB18.0 KB
    https://cdn.diginetica.net/300/client-lite.js 77.2 KB301.4 KB
    https://tracking.diginetica.net/csc-event...ica.net/csc-event 37 B37 B
    https://tracking.diginetica.net/csc-event...ica.net/csc-event 37 B37 B
    https://tracking.diginetica.net/csc-event...ica.net/csc-event 37 B37 B
    Don't use private headers on static content (privateAssets)The page has 4 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.70
    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://sokolov.ru/
  • https://tracking.diginetica.net/csc-event...ica.net/csc-event
  • https://tracking.diginetica.net/csc-event...ica.net/csc-event
  • https://tracking.diginetica.net/csc-event...ica.net/csc-event
  • Avoid missing and error requests (responseOk)The page has 1 error response. The page has 1 response with code 404. 90
    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://sokolov.ru/api/v5/profile/
  • Best practice advice (98)

    TitleAdviceScore
    Do not send too long headers (longHeaders)https://sokolov.ru/a...t/easy-calculate/ has a header set-cookie that is 813 characters long. https://sokolov.ru/a...profile/products/ has a header set-cookie that is 813 characters long. https://sokolov.ru/a...5/location/check/ has a header set-cookie that is 843 characters long. 97
    Description: Do not send response headers that are too long.
    Offenders:
  • https://sokolov.ru/api/v6/basket/easy-calculate/
  • https://sokolov.ru/api/v5/profile/products/
  • https://sokolov.ru/api/v5/location/check/
  • Avoid unnecessary headers (unnecessaryHeaders)There are 17 responses that sets both a max-age and expires header. There are 5 responses that sets a pragma no-cache header (that is a request header). There are 99 responses that sets a server header. 0
    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://sokolov.ru/
  • https://cdn.sokolov.ru/fonts/montserrat/bold.woff2
  • https://cdn.sokolov.ru/fonts/montserrat/bold.woff2
  • https://cdn.sokolov.ru/fonts/montserrat/regular.woff2
  • https://cdn.sokolov.ru/fonts/montserrat/regular.woff2
  • https://cdn.sokolov.ru/fonts/montserrat/medium.woff2
  • https://cdn.sokolov.ru/fonts/montserrat/medium.woff2
  • https://cdn.sokolov.ru/fonts/montserrat/semibold.woff2
  • https://cdn.sokolov.ru/fonts/montserrat/semibold.woff2
  • https://static-catalog.sokolov.ru/_next/static/css/d952859c721b8e52.css
  • https://static-catalog.sokolov.ru/_next/static/css/753a88f965ca8564.css
  • https://static-catalog.sokolov.ru/_next/static/css/7e6914a619aaaccf.css
  • https://static-catalog.sokolov.ru/_next/static/css/13226014bc357e4b.css
  • https://static-catalog.sokolov.ru/_next/static/chunks/webpack-f797a152e73f2687.js
  • https://static-catalog.sokolov.ru/_next/static/chunks/framework-12a8921dab738876.js
  • https://static-catalog.sokolov.ru/_next/static/chunks/main-8933f27b2dfdcc1f.js
  • https://static-catalog.sokolov.ru/_next/static/chunks/pages/_app-e38b532025f7a780.js
  • https://static-catalog.sokolov.ru/_next/static/chunks/4643-847f3cc1031a7680.js
  • https://static-catalog.sokolov.ru/_next/static/chunks/1389-6de8ec0aad0d4042.js
  • https://static-catalog.sokolov.ru/_next/static/chunks/1109-14835968bbd7d3d9.js
  • https://static-catalog.sokolov.ru/_next/static/chunks/8335-c458fe87981e67b6.js
  • https://static-catalog.sokolov.ru/_next/static/chunks/3273-b4365f7fa2b69ffc.js
  • https://static-catalog.sokolov.ru/_next/static/chunks/4965-ab9f88dcd4930cbb.js
  • https://static-catalog.sokolov.ru/_next/static/chunks/7905-0ee747b64d6af721.js
  • https://static-catalog.sokolov.ru/_next/static/chunks/4430-fec7fc68247a3218.js
  • https://static-catalog.sokolov.ru/_next/static/chunks/pages/main/client-41975b885cb0db05.js
  • https://static-catalog.sokolov.ru/_next/static/PFO5q9Vag2hlNUbM4R6cx/_buildManifest.js
  • https://static-catalog.sokolov.ru/_next/static/PFO5q9Vag2hlNUbM4R6cx/_ssgManifest.js
  • https://static-catalog.sokolov.ru/_next/static/css/f2f640d30117f472.css
  • https://static-catalog.sokolov.ru/_next/static/chunks/5672.b06c04c9f0cd7c2d.js
  • https://static-catalog.sokolov.ru/_next/static/css/d67471c075b0c8ff.css
  • https://static-catalog.sokolov.ru/_next/static/chunks/1541.3c00a3e5a0af43e2.js
  • https://static-catalog.sokolov.ru/_next/static/css/a6a191b9c8b7721f.css
  • https://static-catalog.sokolov.ru/_next/static/chunks/3333.bd960628a8b8e1b3.js
  • https://static-catalog.sokolov.ru/_next/static/css/7d06de3534181a6c.css
  • https://static-catalog.sokolov.ru/_next/static/chunks/7811.4e161b19d93bd228.js
  • https://static-catalog.sokolov.ru/_next/static/css/29d30e70ddab6860.css
  • https://static-catalog.sokolov.ru/_next/static/chunks/1571.a1b61b0957d9338f.js
  • https://static-catalog.sokolov.ru/_next/static/chunks/7152.6296268524cf9ad9.js
  • https://static-catalog.sokolov.ru/_next/static/chunks/566.0c0417b504718185.js
  • https://static-catalog.sokolov.ru/_next/static/chunks/5355.983e781220919010.js
  • https://static-catalog.sokolov.ru/_next/static/chunks/8316.2f0baf6b0adfaf4f.js
  • https://static-catalog.sokolov.ru/_next/static/chunks/4803.a81bac4a22023b4a.js
  • https://sokolov.ru/api/v4/content/area/main-banner-004/
  • https://sokolov.ru/api/v4/content/area/main-stories/
  • https://sokolov.ru/api/v4/content/area/navigation-block-008/
  • https://sokolov.ru/api/v5/profile/
  • https://sokolov.ru/api/v6/basket/easy-calculate/
  • https://sokolov.ru/api/v6/basket/easy-calculate/
  • https://sokolov.ru/api/v6/basket/easy-calculate/
  • https://sokolov.ru/api/v5/profile/products/
  • https://sokolov.ru/api/v5/profile/products/
  • https://sokolov.ru/api/v5/profile/products/
  • https://sokolov.ru/api/v5/handbooks/currency-rates/
  • https://sokolov.ru/api/v5/location/check/
  • https://static-catalog.sokolov.ru/_next/static/chunks/4349.cde88d58e567c71a.js
  • https://static-catalog.sokolov.ru/_next/static/chunks/9436-8b7e73a429627c4a.js
  • https://static-catalog.sokolov.ru/_next/static/chunks/7413.07cdcc44c06b3a97.js
  • https://static-catalog.sokolov.ru/_next/static/css/dc41697283a04350.css
  • https://static-catalog.sokolov.ru/_next/static/chunks/9843.ca968b13efa7ff3b.js
  • https://static-catalog.sokolov.ru/_next/static/chunks/4100.32b68982a7d87933.js
  • https://static-catalog.sokolov.ru/_next/static/chunks/6503.06cb04399386cb06.js
  • https://sokolov.ru/api/v4/content/area/nav-buttons/
  • https://seo.sokolov.ru/api/v1/meta/ip/
  • https://seo.sokolov.ru/api/v1/meta/ip/
  • https://static-catalog.sokolov.ru/meta/manifest.json
  • https://sokolov.ru/api/v4/content/area/main-page-topline/
  • https://sokolov.ru/api/v4/content/area/feedback-channels/
  • https://sokolov.ru/api/v4/content/area/download-app-banner/
  • https://static-catalog.sokolov.ru/meta/favicon.ico
  • https://static-catalog.sokolov.ru/_next/static/chunks/8114.18f858da31fff1c0.js
  • https://cdn.sokolov.ru/upload/content/area/69911f3f22faa94347bc746b3f592195.jpg?w=1920&h=844
  • https://cdn.sokolov.ru/upload/content/area/775c747bf67bd4d157930acef1994e33.jpg?w=1920&h=844
  • https://cdn.sokolov.ru/upload/content/area/afe9a0521a1e5677ce1ed6c6edbca9c1.jpg?w=1920&h=844
  • https://cdn.sokolov.ru/upload/content/area/68e58dc20cbd461fd14fc683592fca9b.svg
  • https://cdn.sokolov.ru/upload/content/area/68e58dc20cbd461fd14fc683592fca9b.svg
  • https://cdn.sokolov.ru/upload/content/area/1f1f79322c6d27b1dbbf009d9094f0b1.svg
  • https://cdn.sokolov.ru/upload/content/area/1f1f79322c6d27b1dbbf009d9094f0b1.svg
  • https://cdn.sokolov.ru/upload/content/area/26ad66b0f0bb1efbb0aea1b0aeac800a.svg
  • https://cdn.sokolov.ru/upload/content/area/26ad66b0f0bb1efbb0aea1b0aeac800a.svg
  • https://cdn.sokolov.ru/upload/content/area/b832960c3f0c40480c9293e5b3b5f089.svg
  • https://cdn.sokolov.ru/upload/content/area/b832960c3f0c40480c9293e5b3b5f089.svg
  • https://cdn.sokolov.ru/upload/content/area/062aa6f7bd9925ab496599d8f10203d0.svg
  • https://cdn.sokolov.ru/upload/content/area/062aa6f7bd9925ab496599d8f10203d0.svg
  • https://cdn.sokolov.ru/upload/content/area/f4d1232004ddb92acb6e26f924872b61.svg
  • https://cdn.sokolov.ru/upload/content/area/f4d1232004ddb92acb6e26f924872b61.svg
  • https://cdn.sokolov.ru/upload/content/area/2025c736f68b3ec222a8edf16fdca38f.svg
  • https://cdn.sokolov.ru/upload/content/area/2025c736f68b3ec222a8edf16fdca38f.svg
  • https://cdn.sokolov.ru/upload/content/area/ed05b31c2846fae9c5fa8f5e313560fc.svg
  • https://cdn.sokolov.ru/upload/content/area/ed05b31c2846fae9c5fa8f5e313560fc.svg
  • https://static-catalog.sokolov.ru/_next/static/chunks/5123.a7ad076cb54663ae.js
  • https://static-catalog.sokolov.ru/_next/static/chunks/91f5892f.ceac726038f76803.js
  • https://static-catalog.sokolov.ru/_next/static/chunks/1423.9d0bbe34be4659f7.js
  • https://static-catalog.sokolov.ru/_next/static/chunks/9359.67c08b6f61cb7304.js
  • https://static-catalog.sokolov.ru/_next/static/chunks/8005.7672b23712230e28.js
  • https://cdn.sokolov.ru/upload/content/area/f77c187c912eed81b9a940d56f4e733f.jpg
  • https://cdn.sokolov.ru/upload/content/area/29692ce29bea0ed9fc48a32b78e96577.jpg
  • https://cdn.sokolov.ru/upload/content/area/599381a89a12f2135e4cc41d907c53af.jpg
  • https://cdn.sokolov.ru/upload/content/area/7b737af32bfdf0a9756be23dad1122fa.jpg
  • https://cdn.sokolov.ru/upload/content/area/aacd8376c5eeab8dec4904e69f2fa2d7.jpg
  • https://cdn.sokolov.ru/upload/content/area/d50e7d97286724aca1441de191909703.jpg
  • https://cdn.sokolov.ru/upload/content/area/4a175e582f4323dd74687852cf297369.jpg
  • https://cdn.sokolov.ru/upload/content/area/4754f43eedc890535a35cd5d5da5b413.jpg
  • https://cdn.sokolov.ru/upload/content/area/7730846614634f1e713444e0c80a2198.jpg
  • https://cdn.sokolov.ru/upload/content/area/de6daf5ac89f1e0522d9cf7a2728609a.png
  • https://cdn.sokolov.ru/upload/content/area/dfd375aa4e2f3c311213d48422039027.jpg
  • https://static-catalog.sokolov.ru/_next/static/chunks/4379.021e104d0f1004dc.js
  • https://static-catalog.sokolov.ru/_next/static/chunks/6611.a6ac3b8b55b95e77.js
  • https://static-catalog.sokolov.ru/_next/static/css/5513378153b0b486.css
  • https://static-catalog.sokolov.ru/_next/static/chunks/6422.ae882f6609710448.js
  • https://cdn.sokolov.ru/upload/content/area/2de813168cfab95263a0021f90209577.jpg
  • https://cdn.diginetica.net/300/client-lite.js
  • https://tracking.diginetica.net/csc-event...ica.net/csc-event
  • https://tracking.diginetica.net/csc-event...ica.net/csc-event
  • https://tracking.diginetica.net/csc-event...ica.net/csc-event
  • https://tracking.diginetica.net/csc-event...ica.net/csc-event
  • https://tracking.diginetica.net/csc-event...ica.net/csc-event
  • https://tracking.diginetica.net/csc-event...ica.net/csc-event
  • https://tracking.diginetica.net/csc-event...ica.net/csc-event
  • https://tracking.diginetica.net/csc-event...ica.net/csc-event
  • https://tracking.diginetica.net/csc-event...ica.net/csc-event
  • Privacy advice (86)

    TitleAdviceScore
    Use a good Content-Security-Policy header to make sure you you avoid Cross Site Scripting (XSS) attacks. (contentSecurityPolicyHeader)Set a Content-Security-Policy header to make sure you are not open for Cross Site Scripting (XSS) attacks. You can start with setting a Content-Security-Policy-Report-Only header, that will only report the violation, not stop the download.0
    Description: Content Security Policy is delivered via a HTTP response header, and defines approved sources of content that the browser may load. It can be an effective countermeasure to Cross Site Scripting (XSS) attacks and is also widely supported and usually easily deployed. https://scotthelme.co.uk/content-security-policy-an-introduction/.
    Offenders:
  • https://sokolov.ru/
  • 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://sokolov.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 includeSubDomainsThe max age is lower than six months. Increase it to get a better score.70
    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Ювелирная компания SOKOLOV. Официальный интернет магазин
    Width1904
    Height12417
    DOM elements978
    Avg DOM depth11
    Max DOM depth17
    Iframes5
    Script tags50
    Local storage3.8 KB
    Session storage681 B
    Network Information API4g
    Resource Hints
    dns-prefetch
    http://cdn.diginetica.net/
    preconnect
    http://autocomplete.diginetica.net/
    https://static.criteo.net/
    https://cm.g.doubleclick.net/
    https://ad.mail.ru/
    https://googleads.g.doubleclick.net/
    https://www.googletagmanager.com/
    https://www.google-analytics.com/
    https://api.mindbox.ru/
    https://api.flocktory.com/
    https://demo4.paasweb.co.il/

    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
    Amazon Web Services 100  PaaS
    HSTS 100  Security
    | 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)184 ms
    First Contentful Paint (FCP)840 ms
    Largest Contentful Paint (LCP)1.504 s
    Cumulative Layout Shift (CLS)0.02
    Interaction to next paint (INP)336 ms
    Total Blocking Time (TBT)183 ms
    First Contentful Paint info
    Elements that needed recalculate style before FCP874
    Time spent in recalculate style before FCP65.319 ms
    Extra timings
    TTFB184 ms
    First Paint840 ms
    Load Event End533 ms
    Fully loaded2.361 s
    User Timing marks
    Zone1.736 s
    Zone:ZoneAwarePromise1.737 s
    Zone:toString1.738 s
    Zone:util1.738 s
    Zone:legacy1.739 s
    Zone:timers1.739 s
    Zone:requestAnimationFrame1.739 s
    Zone:blocking1.739 s
    Zone:EventTarget1.739 s
    Zone:MutationObserver1.740 s
    Zone:IntersectionObserver1.740 s
    Zone:FileReader1.741 s
    Zone:on_property1.741 s
    Zone:customElements1.762 s
    Zone:XHR1.762 s
    Zone:geolocation1.762 s
    Zone:PromiseRejectionEvent1.762 s
    Zone:queueMicrotask1.763 s
    User Timing measures
    NameStart timeDuration
    Next.js-before-hydration0 ms528 ms
    Next.js-hydration528 ms107 ms
    Zone1.736 s0 ms
    Zone:ZoneAwarePromise1.737 s1 ms
    Zone:toString1.738 s0 ms
    Zone:util1.738 s1 ms
    Zone:legacy1.739 s0 ms
    Zone:timers1.739 s0 ms
    Zone:requestAnimationFrame1.739 s0 ms
    Zone:blocking1.739 s0 ms
    Zone:EventTarget1.739 s1 ms
    Zone:MutationObserver1.740 s0 ms
    Zone:IntersectionObserver1.740 s0 ms
    Zone:FileReader1.741 s0 ms
    Zone:on_property1.741 s21 ms
    Zone:customElements1.762 s0 ms
    Zone:XHR1.762 s0 ms
    Zone:geolocation1.762 s0 ms
    Zone:PromiseRejectionEvent1.762 s0 ms
    Zone:queueMicrotask1.763 s0 ms

    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 typeDIV
    Element/tag<div class="image_lazy-load__Wso7t image_loaded__8YbPx SklvTextWithPhotoSlide_sklv-slide-text__img__PcAAE" style="background-image: url(&quot;https://cdn.sokolov.ru/upload/content/area/69911f3f22faa94347bc746b3f592195.jpg?w=1920&amp;h=844&quot;);"></div>
    Render time 1.504 s
    Element render delay180 ms
    TTFB184 ms
    Resource delay1.065 s
    Resource load duration75 ms
    Elements that needed recalculate style before LCP3189
    Time spent in recalculate style before LCP177.588 ms
    Load time1.327 s
    URL https://cdn.sokolov....c746b3f592195.jpg
    Size (width*height)1606976
    DOM path
    div#__next > div#catalog > div:eq(0) > main > div > div > section:eq(0) > div > div > div:eq(1) > div > div:eq(0) > a > div > div> div#__next > div#catalog > div:eq(0) > main > div > div > section:eq(0) > div > div > div:eq(1) > div > div:eq(0) > a > div > div>
    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.01674 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.01103<main class="mainLayout_main__L9rDe"></main>
    body > div#__next > div#catalog > div:eq(0) > main
    0.00366<div class="Text_search__3MlXF"></div>,<div class="HeaderBottom_header-bottom_right__7W_NU"></div>
    body > div#__next > div#catalog > div:eq(0) > header > div:eq(1) > div:eq(1) > div:eq(1) > div,body > div#__next > div#catalog > div:eq(0) > header > div:eq(1) > div:eq(1) > div:eq(2)
    0.00083<section class="DataProvider_sklv-main-section__wXrbC DataProvider_sklv-main-section_main-stories__vSpSr"></section>
    body > div#__next > div#catalog > div:eq(0) > main > div > div > section:eq(1)
    0.00063<button class="TopLine_promo-topline__close__NxqbX"></button>,<div class="Header_header__inner__wmRSn Header_header_main__dMe4L"></div>
    body > div#__next > div#catalog > div:eq(0) > header > div:eq(0) > button,body > div#__next > div#catalog > div:eq(0) > header > div:eq(1)
    0.00050<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"></svg>,<div class="Header_header__inner__wmRSn Header_header_main__dMe4L"></div>
    body > div#__next > div#catalog > div:eq(0) > header > div:eq(0) > button > svg,body > div#__next > div#catalog > div:eq(0) > header > div:eq(1)
    0.00009<span class="CitySelectButton_city-text___XqH_"></span>,<button class="ButtonDeprecated_sklv-button__Wy8xr ButtonDeprecated_sklv-button_borderless__776ey" types="borderless" data-qa="header_shops_map_btn"></button>,<button class="ButtonDeprecated_sklv-button__Wy8xr HeaderTop_header-top_left-delivery__GG_8X" types=""></button>
    body > div#__next > div#catalog > div:eq(0) > header > div:eq(1) > div:eq(0) > div:eq(1) > div:eq(1) > div:eq(0) > button > span,body > div#__next > div#catalog > div:eq(0) > header > div:eq(1) > div:eq(0) > div:eq(1) > div:eq(2) > a > button,body > div#__next > div#catalog > div:eq(0) > header > div:eq(1) > div:eq(0) > div:eq(1) > a > button
    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 336 ms.

    Event typepointerover
    Element type
    Element class name
    Event target
    Load state when the event happeneddom-interactive

    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
    217 ms272 ms2.8 ms2.2 ms0.6 ms
    https://static-catalog.sokolov.ru/_next/static/chunks/framework-12a8921dab738876.js

    Forced Style And Layout Duration: 72 ms

    Invoker:  MessagePort.onmessage
    Invoker Type: event-listener
    Window attribution: self
    Source char position: -1

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    196.9 ms222.5 ms30.8 ms29.8 ms1 ms
    https://cdn.diginetica.net/300/client-lite.js

    Invoker:  https://cdn.diginetica.net/300/client-lite.js
    Invoker Type: classic-script
    Window attribution: self

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    165.5 ms210.8 ms9.5 ms9.2 ms0.3 ms
    https://static-catalog.sokolov.ru/_next/static/chunks/framework-12a8921dab738876.js

    Forced Style And Layout Duration: 12 ms

    Invoker:  MessagePort.onmessage
    Invoker Type: event-listener
    Window attribution: self
    Source char position: -1

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    147.8 ms202 ms5.4 ms4.8 ms0.6 ms
    https://code.jivo.ru/js/bundle_ru_RU.js?rand=1743599089

    Forced Style And Layout Duration: 2 ms

    Invoker:  https://code.jivo.ru/js/bundle_ru_RU.js?rand=1743599089
    Invoker Type: classic-script
    Window attribution: self

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    122.6 ms171.2 ms8.2 ms7.5 ms0.7 ms
    https://www.googletagmanager.com/gtm.js?id=GTM-M5D8284

    Invoker:  https://www.googletagmanager.com/gtm.js?id=GTM-M5D8284
    Invoker Type: classic-script
    Window attribution: self

    https://static-catalog.sokolov.ru/_next/static/chunks/9359.67c08b6f61cb7304.js

    Invoker:  SCRIPT[src=https://www.googletagmanager.com/gtm.js?id=GTM-M5D8284].onload
    Invoker Type: event-listener
    Window attribution: self
    Source char position: -1

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    83.9 ms182.9 ms1.7 ms1.1 ms0.6 ms
    https://api.flocktory.com/v2/loader.js?site_id=2568

    Forced Style And Layout Duration: 6 ms

    Invoker:  https://api.flocktory.com/v2/loader.js?site_id=2568
    Invoker Type: classic-script
    Window attribution: self

    https://www.googletagmanager.com/gtag/js?id=G-MZNG6JMV9K&l=dataLayer&cx=c&gtm=45He5411v811794066za200&tag_exp=102788824~102803279~102813109~102887800~102926062~102975949~103016951

    Forced Style And Layout Duration: 2 ms

    Invoker:  https://www.googletagmanager.com/gtag/js?id=G-MZNG6JMV9K&l=dataLayer&cx=c&gtm=45He5411v811794066za200&tag_exp=102788824~102803279~102813109~102887800~102926062~102975949~103016951
    Invoker Type: classic-script
    Window attribution: self

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    42.6 ms50 ms44.8 ms43.6 ms1.2 ms
    https://personalization-web-stable.mindbox.ru/js/service/v2/forms.js?v=4.50.11

    Invoker:  https://personalization-web-stable.mindbox.ru/js/service/v2/forms.js?v=4.50.11
    Invoker Type: classic-script
    Window attribution: self

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    20 ms126.2 ms8.3 ms6.9 ms1.4 ms
    https://static-catalog.sokolov.ru/_next/static/chunks/pages/_app-e38b532025f7a780.js

    Forced Style And Layout Duration: 31 ms

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

    https://static-catalog.sokolov.ru/_next/static/chunks/framework-12a8921dab738876.js

    Forced Style And Layout Duration: 1 ms

    Invoker:  MessagePort.onmessage
    Invoker Type: event-listener
    Window attribution: self
    Source char position: -1

    https://static-catalog.sokolov.ru/_next/static/chunks/pages/_app-e38b532025f7a780.js

    Forced Style And Layout Duration: 4 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
    15.9 ms113.9 ms1.2 ms0.5 ms0.7 ms
    https://mc.yandex.ru/metrika/tag.js

    Invoker:  https://mc.yandex.ru/metrika/tag.js
    Invoker Type: classic-script
    Window attribution: self

    https://api.flocktory.com/u_shaman/setup-api.js?body=%7B%22siteId%22%3A%222568%22%2C%22utm%22%3A%7B%22source%22%3A%22%22%2C%22medium%22%3A%22%22%2C%22campaign%22%3A%22%22%2C%22term%22%3A%22%22%2C%22content%22%3A%22%22%7D%2C%22site-session-id%22%3A%22920a2a7b-65d9-42c6-82dd-d730b089cd59-6%22%7D&callback=flock_jsonp_1

    Invoker:  https://api.flocktory.com/u_shaman/setup-api.js?body=%7B%22siteId%22%3A%222568%22%2C%22utm%22%3A%7B%22source%22%3A%22%22%2C%22medium%22%3A%22%22%2C%22campaign%22%3A%22%22%2C%22term%22%3A%22%22%2C%22content%22%3A%22%22%7D%2C%22site-session-id%22%3A%22920a2a7b-65d9-42c6-82dd-d730b089cd59-6%22%7D&callback=flock_jsonp_1
    Invoker Type: classic-script
    Window attribution: self

    https://cdn.syteapi.com/assets/imajs/imajs.js?a=9240&sig=607d2cae7c794b3be1ebc56c&languageCode=ru_RU

    Invoker:  https://cdn.syteapi.com/assets/imajs/imajs.js?a=9240&sig=607d2cae7c794b3be1ebc56c&languageCode=ru_RU
    Invoker Type: classic-script
    Window attribution: self

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    15.5 ms92.4 ms1.5 ms0.9 ms0.6 ms
    https://www.googletagmanager.com/gtag/destination?id=AW-11078509593&l=dataLayer&cx=c&gtm=45je5411v9129782309za200zb811794066&tag_exp=102788824~102803279~102813109~102887800~102926062~102975949~103016951~103021830

    Forced Style And Layout Duration: 2 ms

    Invoker:  https://www.googletagmanager.com/gtag/destination?id=AW-11078509593&l=dataLayer&cx=c&gtm=45je5411v9129782309za200zb811794066&tag_exp=102788824~102803279~102813109~102887800~102926062~102975949~103016951~103021830
    Invoker Type: classic-script
    Window attribution: self

    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
    Documents9
    Frames9
    JSEventListeners705
    LayoutObjects803
    MediaKeySessions0
    MediaKeys0
    Nodes1156
    Resources85
    ContextLifecycleStateObservers144
    V8PerContextDatas1
    WorkerGlobalScopes0
    UACSSResources0
    RTCPeerConnections0
    ResourceFetchers9
    AdSubframes0
    DetachedScriptStates0
    ArrayBufferContents68
    LayoutCount99
    RecalcStyleCount593
    LayoutDuration41
    RecalcStyleDuration623
    DevToolsCommandDuration28
    ScriptDuration1090
    V8CompileDuration1
    TaskDuration3120
    TaskOtherDuration1337
    ThreadTime3
    ProcessTime5
    JSHeapUsedSize12532404
    JSHeapTotalSize18898944
    FirstMeaningfulPaint837
    | 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 requests99
    Total domains6
    Total transfer size2.5 MB
    Total content size4.8 MB
    Responses missing compression42
    Number of cookies13
    Third party cookies0
    Requests per response code
    20098
    4041

    Largest assets on the page (by transfer size)

    Requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b10.1 KB57.5 KB1
    css0 b111.1 KB760.9 KB11
    javascript555 B1.0 MB2.5 MB41
    image1.0 KB1.2 MB1.1 MB18
    font0 b208.2 KB206.8 KB4
    json0 b16.3 KB38.6 KB13
    other0 b0 b0 b1
    favicon0 b3.7 KB14.7 KB1
    svg0 b5.2 KB6.5 KB8
    Total1.5 KB2.5 MB4.8 MB98

    Data per domain

    DomainTotal download timeTransfer SizeContent SizeRequests
    sokolov.ru1.267 s26.0 KB95.4 KB13
    cdn.sokolov.ru1.222 s1.4 MB1.4 MB27
    static-catalog.sokolov.ru2.031 s1.0 MB3.0 MB53
    seo.sokolov.ru74 ms232 B56 B2
    cdn.diginetica.net65 ms77.2 KB301.4 KB1
    tracking.diginetica.net85 ms111 B111 B3

    Expires and last modified statistics

    typeminmedianmax
    Expires0 seconds1 year1 year
    Last modified12 hours3 days2 years

    Requests loaded after onLoad event

    Included requests done after load event end.

    ContentTransfer SizeRequests
    html0 b0
    css10.4 KB7
    javascript203.7 KB26
    image1.2 MB18
    font0 b0
    json16.3 KB13
    other0 b1
    favicon3.7 KB1
    svg5.2 KB8
    Total1.4 MB75

    Requests loaded after onContentLoad

    Includes requests done after DOM content loaded.

    ContentTransfer SizeRequests
    html0 b0
    css10.4 KB7
    javascript203.7 KB26
    image1.2 MB18
    font0 b0
    json16.3 KB13
    other0 b1
    favicon3.7 KB1
    svg5.2 KB8
    Total1.4 MB75

    Render blocking requests

    Render blocking information directly from Chrome.

    BlockingIn body parser blockingPotentially blocking
    000

    Render information

    URLType
    https://static-catal...9f88dcd4930cbb.jsnon_blocking
    https://static-catal...8b532025f7a780.jsnon_blocking
    https://cdn.digineti...00/client-lite.jsnon_blocking
    https://static-catal...2859c721b8e52.cssnon_blocking
    https://static-catal...a8921dab738876.jsnon_blocking
    https://cdn.sokolov....rat/regular.woff2non_blocking
    https://cdn.sokolov....serrat/bold.woff2non_blocking
    https://cdn.sokolov....at/semibold.woff2non_blocking
    https://cdn.sokolov....rrat/medium.woff2non_blocking
    https://static-catal...7f3cc1031a7680.jsnon_blocking
    https://static-catal...33f27b2dfdcc1f.jsnon_blocking
    https://static-catal...c08b6f61cb7304.jsnon_blocking
    https://static-catal...c7fc68247a3218.jsnon_blocking
    https://static-catal...ad076cb54663ae.jsnon_blocking
    https://static-catal...26014bc357e4b.cssnon_blocking
    https://static-catal...e8ec0aad0d4042.jsnon_blocking
    https://static-catal...960628a8b8e1b3.jsnon_blocking
    https://static-catal...58fe87981e67b6.jsnon_blocking
    https://static-catal...e747b64d6af721.jsnon_blocking
    https://static-catal...835968bbd7d3d9.jsnon_blocking
    https://static-catal...0bbe34be4659f7.jsnon_blocking
    https://static-catal...97a152e73f2687.jsnon_blocking
    https://static-catal...cdcc44c06b3a97.jsnon_blocking
    https://static-catal...365f7fa2b69ffc.jsnon_blocking
    https://static-catal...7e73a429627c4a.jsnon_blocking
    https://static-catal...914a619aaaccf.cssnon_blocking
    https://static-catal...a88f965ca8564.cssnon_blocking
    https://static-catal...b61b0957d9338f.jsnon_blocking
    https://static-catal...191b9c8b7721f.cssdynamically_injected_non_blocking
    https://static-catal...72b23712230e28.jsnon_blocking
    https://static-catal...6c04c9f0cd7c2d.jsnon_blocking
    https://static-catal..._buildManifest.jsnon_blocking
    https://static-catal...161b19d93bd228.jsnon_blocking
    https://static-catal...00a3e5a0af43e2.jsnon_blocking
    https://static-catal...968b13efa7ff3b.jsnon_blocking
    https://static-catal...96268524cf9ad9.jsnon_blocking
    https://static-catal...1697283a04350.cssdynamically_injected_non_blocking
    https://static-catal...30e70ddab6860.cssdynamically_injected_non_blocking
    https://static-catal...ac3b8b55b95e77.jsnon_blocking
    https://static-catal...1e104d0f1004dc.jsnon_blocking
    https://static-catal...471c075b0c8ff.cssdynamically_injected_non_blocking
    https://static-catal...640d30117f472.cssdynamically_injected_non_blocking
    https://static-catal...6de3534181a6c.cssdynamically_injected_non_blocking
    https://static-catal...3e781220919010.jsnon_blocking
    https://static-catal...882f6609710448.jsnon_blocking
    https://static-catal...b68982a7d87933.jsnon_blocking
    https://static-catal...0baf6b0adfaf4f.jsnon_blocking
    https://static-catal...cb04399386cb06.jsnon_blocking
    https://static-catal...0417b504718185.jsnon_blocking
    https://static-catal...1bac4a22023b4a.jsnon_blocking
    https://static-catal...f858da31fff1c0.jsnon_blocking
    https://static-catal...975b885cb0db05.jsnon_blocking
    https://static-catal...3378153b0b486.cssdynamically_injected_non_blocking
    https://static-catal...e88d58e567c71a.jsnon_blocking
    https://static-catal...ac726038f76803.jsnon_blocking
    https://static-catal...x/_ssgManifest.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 183
    Max Potential First Input Delay 216
    Long Tasks before First Paint3530
    Long Tasks before First Contentful Paint3530
    Long Tasks before Largest Contentful Paint4586
    Long Tasks after Load Event End5802
    Total Long Tasks6863

    CPU last long task happened at 1.888 s

    Individual Long Tasks

    namestartTimedurationcontainerIdcontainerNamecontainerSrccontainerType
    self43961window
    self535205window
    self764264window
    self126856window
    self156261window
    self1888216window

    CPU time spent

    Calculated using Tracium.

    Categories (ms)
    parseHTML19
    styleLayout541
    paintCompositeRender253
    scriptParseCompile1
    scriptEvaluation1340
    garbageCollection30
    other517
    Events (ms)
    FunctionCall890
    UpdateLayoutTree502
    RunTask349
    RunMicrotasks258
    Paint161
    v8.run124
    PaintImage55
    PrePaint50
    Layerize50
    Layout38
    Commit34
    UpdateLayer31
    IntersectionObserverController::computeIntersections17
    V8.HandleInterrupts16
    v8.callFunction14
    V8.GC_SCAVENGER_SCAVENGE_PARALLEL14
    V8.BytecodeBudgetInterrupt14

    Time spent per request

    URLCPU time (ms)
    https://static-catalog.sokolov.ru/_next/static/chunks/framework-12a8921dab738876.js864
    https://cdn.diginetica.net/300/client-lite.js221
    https://static-catalog.sokolov.ru/_next/static/chunks/4643-847f3cc1031a7680.js198
    https://static-catalog.sokolov.ru/_next/static/chunks/9359.67c08b6f61cb7304.js140
    https://static-catalog.sokolov.ru/_next/static/chunks/pages/_app-e38b532025f7a780.js63
    https://static-catalog.sokolov.ru/_next/static/chunks/3333.bd960628a8b8e1b3.js27
    https://static-catalog.sokolov.ru/_next/static/chunks/1571.a1b61b0957d9338f.js26
    https://static-catalog.sokolov.ru/_next/static/chunks/pages/main/client-41975b885cb0db05.js22
    https://static-catalog.sokolov.ru/_next/static/chunks/9843.ca968b13efa7ff3b.js21
    https://static-catalog.sokolov.ru/_next/static/chunks/main-8933f27b2dfdcc1f.js14
    https://static-catalog.sokolov.ru/_next/static/chunks/5123.a7ad076cb54663ae.js11

    CPU time spent

    Tool/domainTime (ms)
    static-catalog.sokolov.ru1385.1
    cdn.diginetica.net220.6
    | 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.

    cdn.diginetica.net
    tracking.diginetica.net

    First party requests and sizes per content type

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

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b10.1 KB57.5 KB1
    css0 b111.1 KB760.9 KB11
    javascript0 b950.3 KB2.3 MB40
    image0 b1.2 MB1.1 MB15
    font0 b208.2 KB206.8 KB4
    json0 b16.3 KB38.6 KB13
    other0 b0 b0 b1
    favicon0 b3.7 KB14.7 KB1
    svg0 b5.2 KB6.5 KB8
    TotalN/A2.4 MB4.5 MB95

    Third party requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b0 b0 b0
    css0 b0 b0 b0
    javascript555 B77.2 KB301.4 KB1
    image1.0 KB111 B111 B3
    font0 b0 b0 b0
    Total1.5 KB77.3 KB301.5 KB4
    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

    critical
    Buttons must have discernible text (cat.name-role-value,wcag2a,wcag412,section508,section508.22.a,TTv5,TT6.a,EN-301-549,EN-9.4.1.2,ACT) - button-nameEnsure buttons have discernible text
    Fix any of the following: Element does not have inner 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 Element does not have an implicit (wrapped) <label> Element does not have an explicit <label> Element's default semantics were not overridden with role="none" or role="presentation"
    • <button class="TopLine_promo-topline__close__NxqbX">
    • <button class="ButtonBase_button__PDJz2 ButtonBase_button_small__K2bcT IconButton_icon-button__rbJuu NavigationButton_navigation-button__hQ0nc NavigationButton_navigation-button_no-text__qPhxD HeaderTop_header-btn-nav-icon__cPL9m" type="button" data-qa="header_favorites_btn">
    • <button class="ButtonBase_button__PDJz2 ButtonBase_button_small__K2bcT IconButton_icon-button__rbJuu NavigationButton_navigation-button__hQ0nc NavigationButton_navigation-button_no-text__qPhxD HeaderTop_header-btn-nav-icon__cPL9m" type="button" data-qa="header_to_basket_btn">
    • <button class="ButtonBase_button__PDJz2 ButtonBase_button_small__K2bcT IconButton_icon-button__rbJuu NavigationButton_navigation-button__hQ0nc NavigationButton_navigation-button_no-text__qPhxD HeaderTop_header-btn-nav-icon__cPL9m" type="button" data-qa="header_user_login_btn">
    • <button type="button" class="ButtonDeprecated_sklv-button__Wy8xr ButtonDeprecated_sklv-button_icon___v8v7 IconButton_icon-button__kK7yS UserMenu_user_menu-header-close_button__1SB79" types="icon" icon="close" loading="">
    • <button type="button" class="ButtonDeprecated_sklv-button__Wy8xr HeaderBottom_header-bottom-custom_btn__s81fq HeaderBottom_header-bottom-custom-premium__WCy3w HeaderBottom_header-bottom-custom_btn-img__lEDkt" style="background-image: url(&quot;https://cdn.sokolov.ru/upload/content/area/dfd375aa4e2f3c311213d48422039027.jpg&quot;);">
    • <button type="button" class="NavigationButton_sklv__swiper-btn__mnW6Y NavigationButton_sklv__swiper-btn_prev__Rurka NavigationButton_sklv__swiper-btn_main_banner__xkIcD">
    • <button type="button" class="NavigationButton_sklv__swiper-btn__mnW6Y NavigationButton_sklv__swiper-btn_next__kxotX NavigationButton_sklv__swiper-btn_main_banner__xkIcD">
    • <button type="button" class="NavigationButton_sklv__swiper-btn__pVebn NavigationButton_sklv__swiper-btn_prev__UB5ma NavigationButton_sklv__swiper-btn_navigation__T_kAh swiper-button-disabled" disabled="">
    • <button type="button" class="NavigationButton_sklv__swiper-btn__pVebn NavigationButton_sklv__swiper-btn_next__gOkQn NavigationButton_sklv__swiper-btn_navigation__T_kAh">
    • <button class="ButtonBase_button__PDJz2 ButtonBase_button_medium__MKTYn Button_button__primary__8IzQd" type="button"></button>
    • <button class="ButtonBase_button__PDJz2 ButtonBase_button_medium__MKTYn Button_button__primary__8IzQd" type="button"></button>
    • <button class="ButtonBase_button__PDJz2 ButtonBase_button_medium__MKTYn Button_button__primary__8IzQd" type="button"></button>
    • <button class="ButtonBase_button__PDJz2 ButtonBase_button_medium__MKTYn Button_button__primary__8IzQd" type="button"></button>
    • <button class="ButtonBase_button__PDJz2 ButtonBase_button_medium__MKTYn Button_button__primary__8IzQd" type="button"></button>
    • <button class="ButtonBase_button__PDJz2 ButtonBase_button_medium__MKTYn Button_button__primary__8IzQd" type="button"></button>
    • <button class="ButtonBase_button__PDJz2 ButtonBase_button_medium__MKTYn Button_button__primary__8IzQd" type="button"></button>
    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 4.17 (foreground color: #ffffff, background color: #257ae8, font size: 10.5pt (14px), font weight: normal). Expected contrast ratio of 4.5:1
    • <button class="ButtonBase_button__PDJz2 ButtonBase_button_small__K2bcT Button_button__primary__8IzQd CatalogButton_catalog-btn_big__RZdeX" type="button" data-qa="header_catalog_nav_open_btn">
    • <p class="NavigationNew_sklv-main-navigation_wrapper__text__Cd6Mf">Каталог</p>
    • <button class="ButtonBase_button__PDJz2 ButtonBase_button_medium__MKTYn Button_button__primary__8IzQd Products_products_more_button__9nPrh" type="button">Еще товары</button>
    minor
    Headings should not be empty (cat.name-role-value,best-practice) - empty-headingEnsure headings have discernible 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
    • <h2 class="Products_products_title__Prq1z"></h2>
    • <h2 class="Products_products_title__Prq1z"></h2>
    • <h2 class="Products_products_title__Prq1z"></h2>
    • <h2 class="Products_products_title__Prq1z"></h2>
    • <h2 class="Products_products_title__Prq1z"></h2>
    • <h2 class="Products_products_title__Prq1z"></h2>
    • <h2 class="Products_products_title__Prq1z"></h2>
    • <h2 class="Products_products_title__Prq1z"></h2>
    serious
    Frames must have an accessible name (cat.text-alternatives,wcag2a,wcag412,section508,section508.22.i,TTv5,TT12.d,EN-301-549,EN-9.4.1.2) - frame-titleEnsure <iframe> and <frame> elements have an accessible name
    Fix any of the following: Element has no title attribute 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's default semantics were not overridden with role="none" or role="presentation"
    • <iframe id="iframe_flock_data_provider" name="iframe_flock_data_provider" src="https://api.flocktory.com/v2/provider/provider.html" width="0" height="0" style="position: absolute; top: -2000px; left: 0px;"></iframe>
    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 class="TopLine_sklv-topline__link__BIztV" href="/ecom/online-sale/"></a>
    • <a class="ButtonBase_button__PDJz2 ButtonBase_link__TyRSd" target="_self" href="https://sokolov.ru/favorites/">
    • <a class="ButtonBase_button__PDJz2 ButtonBase_link__TyRSd" target="_self" href="https://sokolov.ru/basket/">
    • <a href="/jewelry-catalog/premiums/">
    • <a class="SklvTextWithPhotoSlide_sklv-slide-text__SPAK8" href="/jewelry-catalog/?stock=Y">
    • <a class="SklvTextWithPhotoSlide_sklv-slide-text__SPAK8" href="/omni/cashback/">
    • <a class="SklvTextWithPhotoSlide_sklv-slide-text__SPAK8" href="/cosmetics/?stock=Y">
    • <a class="Products_products_link__AGRBV" style="color:#fff" href="/main/client/"><button class="ButtonBase_button__PDJz2 ButtonBase_button_medium__MKTYn Button_button__primary__8IzQd" type="button"></button></a>
    • <a class="Products_products_link__AGRBV" style="color:#fff" href="/main/client/"><button class="ButtonBase_button__PDJz2 ButtonBase_button_medium__MKTYn Button_button__primary__8IzQd" type="button"></button></a>
    • <a class="Products_products_link__AGRBV" style="color:#fff" href="/main/client/"><button class="ButtonBase_button__PDJz2 ButtonBase_button_medium__MKTYn Button_button__primary__8IzQd" type="button"></button></a>
    • <a class="Products_products_link__AGRBV" style="color:#fff" href="/main/client/"><button class="ButtonBase_button__PDJz2 ButtonBase_button_medium__MKTYn Button_button__primary__8IzQd" type="button"></button></a>
    • <a class="Products_products_link__AGRBV" style="color:#fff" href="/main/client/"><button class="ButtonBase_button__PDJz2 ButtonBase_button_medium__MKTYn Button_button__primary__8IzQd" type="button"></button></a>
    • <a class="Products_products_link__AGRBV" style="color:#fff" href="/main/client/"><button class="ButtonBase_button__PDJz2 ButtonBase_button_medium__MKTYn Button_button__primary__8IzQd" type="button"></button></a>
    • <a class="Products_products_link__AGRBV" style="color:#fff" href="/main/client/"><button class="ButtonBase_button__PDJz2 ButtonBase_button_medium__MKTYn Button_button__primary__8IzQd" type="button"></button></a>
    <ul> and <ol> must only directly contain <li>, <script> or <template> elements (cat.structure,wcag2a,wcag131,EN-301-549,EN-9.1.3.1) - listEnsure that lists are structured correctly
    Fix all of the following: List element has direct children that are not allowed: a
    • <ul class="UserMenu_user_menu-links_list__XdG8h">
    critical
    Zooming and scaling must not be disabled (cat.sensory-and-visual-cues,wcag2aa,wcag144,EN-301-549,EN-9.1.4.4,ACT) - meta-viewportEnsure <meta name="viewport"> does not disable text scaling and zooming
    Fix any of the following: user-scalable=no on <meta> tag disables zooming on mobile devices
    • <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimal-ui, user-scalable=no">
    • <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimal-ui, user-scalable=no">
    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" prefix="og: http://ogp.me/ns#" itemscope="" itemtype="http://schema.org/WebPage" class="popmechanic-desktop popmechanic-landscape popmechanic-loaded">