Mobile 375 × 812

Desktop 1440 × 900

Score: 71 / 100
Based on 8 categories, 0 sections
Decent speed, but optimizing further could improve engagement.
Several missing protections leave your users and data exposed.
Major barriers for users with disabilities — up to 15% of your audience.
Well-optimized for search — your content is discoverable.
Good server performance with room for optimization.
Mostly compliant — a few items need attention.
Rich content metadata — your pages look great everywhere.
Reasonable footprint with room for optimization.
The overall score is a weighted average of individual category scores. Categories with more impact on user experience and security carry more weight.
Weights reflect general web best practices. Individual needs may differ.
Content-Security-Policy header is missing
Security gaps expose your site and users to attacks, eroding trust.
No Content-Security-Policy header found
Security gaps expose your site and users to attacks, eroding trust.
11 link(s) with no accessible text
Accessibility issues exclude users with disabilities — up to 15% of your potential audience.
4 image-in-link without alt text
Accessibility issues exclude users with disabilities — up to 15% of your potential audience.
5 image(s) missing alt attribute
Accessibility issues exclude users with disabilities — up to 15% of your potential audience.
High impact, low effort — start here.
High impact, requires investment.
Small gains, minimal effort.
Nothing in this quadrant — good news.
Low impact, high effort — do last.
Nothing in this quadrant — good news.
[](https://beavercheck.com/results/514e4d35-4fe4-4e80-9d57-1cf5df9f38cd)<a href="https://beavercheck.com/results/514e4d35-4fe4-4e80-9d57-1cf5df9f38cd"><img src="https://beavercheck.com/badge?url=https%3A%2F%2Felconfidencial.com" alt="BeaverCheck Score"></a>https://beavercheck.com/badge?url=https%3A%2F%2Felconfidencial.comThis badge auto-updates with your latest scan result.
Your site performs reasonably well, but a few targeted fixes could meaningfully improve results. Accessibility issues exclude users who rely on assistive technology — an estimated 15% of your potential audience. Addressing the critical issues below would have the most immediate impact on your user trust.
7 barrier(s) likely increasing bounce by ~26%.
Page takes 22.9s to load
+12% bounceUsers abandon at ~3s — you're 20.4s over the 2.5s threshold
Fix: Optimize render-blocking resources, preload the hero image, and compress images
High main-thread blocking time
+2% bouncePage is non-interactive for 554ms after first paint
Fix: Defer third-party scripts and split large bundles
No Content-Security-Policy header
+1% bounceHigher XSS blast radius — one compromised script can exfiltrate the checkout form
Fix: Ship a reporting-only CSP first, then enforce once violations are clean
Content is hard to read
+2% bounceGraduate-level reading difficulty — limits the addressable audience for product or blog pages
Fix: Shorten sentences; replace jargon with plain language; target Flesch ease ≥60
11 link(s) with generic text ("click here", "read more")
+1% bounceScreen-reader users navigating by link list see no context — and search engines can't infer relevance
Fix: Rewrite with descriptive phrases that identify the destination
No skip-to-content link
+1% bounceKeyboard and screen-reader users must tab through the entire header on every page
Fix: Add a visible-on-focus <a href="#main">Skip to content</a> as the first focusable element
2 broken link(s) on the page
+3% bounceClicks land on 404s — trust drops and the session often ends
Fix: Fix or remove the broken destinations surfaced on the Content tab
Preliminary CRO audit — each barrier links to the tab with detailed analysis.
€468 investment → €0.72/month returns + EUR 120,500,000 risk avoided
€468
6h · 5 findings
€0.72 /mo
~€8.61 / year
EUR 120,500,000
if kept compliant
€85 — in quick wins — start here for the fastest payback
Figures combine localized regulatory fine ceilings, search/conversion value priced against local CPC, and bandwidth waste estimates. Results depend on implementation quality and audience composition. Not legal or financial advice.
5.5 developer hours at €85/hr
Based on European Union rates (€85/hr)
Start here for the best return on investment
€10,041,667 / month at risk
~€120,500,009 / year if left unfixed
€120,500,000
+13 more
€0.72 /mo
9686.6 MB/mo × 0.074 EUR/GB
Compliance figures represent the statutory maximum fine for the most severe triggered category, capped per regulation — not the sum of per-finding penalties. Based on published regulatory fine ranges. This is not legal advice.
Unique monthly visitors from your analytics
Purchases, signups, or key actions
Optional — for revenue estimation
more engaged visitors from reduced bounce
Fix 5 critical issues to capture this value
Based on Google/Deloitte research ("Milliseconds Make Millions") showing a ~7% bounce rate increase per additional second of LCP above the 2.5s "Good" threshold.
Your site's LCP: → estimated after fixes.
These are estimates based on industry research — actual results vary
Your data stays in your browser — nothing is sent to our servers
Thanks for your feedback!
We'll use a cached audit if available, or offer to scan.
Industry-standard audits powered by Google Lighthouse.
Key metrics that affect user experience.
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
3.83 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
22.87 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
554 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.009
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
4.55 s
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
22.90 s
Audit breakdown by category with detailed findings.
Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity.
Performance issues directly impact user engagement and conversion rates.
Polyfills and transforms enable older browsers to use new JavaScript features. However, many aren't necessary for modern browsers. Consider modifying your JavaScript build process to not transpile Baseline features, unless you know you must support older browsers. Learn why most sites can deploy ES6+ code without transpiling
Shipping ES5 transpiled code to modern browsers wastes bytes — every user with an evergreen browser pays for compatibility you don't need.
Most users today run browsers that natively support ES6+, async/await, optional chaining, and the rest of modern JavaScript. Transpiling to ES5 'just in case' adds 20-40% to your bundle for no benefit. Configure your build to target a modern browserslist, or ship a differential bundle pair (modern + legacy) with the module/nomodule pattern.
Source: Google web.dev / Lighthouse
3rd party code can significantly impact load performance. Reduce and defer loading of 3rd party code to prioritize your page's content.
Performance issues directly impact user engagement and conversion rates.
A long cache lifetime can speed up repeat visits to your page. Learn more about caching.
Performance issues directly impact user engagement and conversion rates.
Your first network request is the most important. Reduce its latency by avoiding redirects, ensuring a fast server response, and enabling text compression.
Performance issues directly impact user engagement and conversion rates.
A forced reflow occurs when JavaScript queries geometric properties (such as offsetWidth) after styles have been invalidated by a change to the DOM state. This can result in poor performance. Learn more about forced reflows and possible mitigations.
Performance issues directly impact user engagement and conversion rates.
Reducing the download time of images can improve the perceived load time of the page and LCP. Learn more about optimizing image size
Performance issues directly impact user engagement and conversion rates.
| URL | Resource Size | Est Savings | |
|---|---|---|---|
Vox exigirá a Feijóo cambios legales para cumplir la li.homeSection__item > article.openingHomeMediumPhoto > figure.openingHomeMediumPhoto__imgWrapper > img.openingHomeMediumPhoto__img | /xGY4Ys6MNnhNY4nQpoTl8u_hkII=/filters:format(jpg):quality... | 86.8 KiB | 33.3 KiB |
Hidalgo niega gestiones de Begoña en el rescate de Air Europa: article.bigPhoto > div.report__multimediaSide > figure.report__imgWrapper > img.report__multimediaPoster | /RgP80DIR2ZhH33a0g838GGWYeuo=/0x0:2272x1500/416x416/filte... | 22.7 KiB | 6.8 KiB |
Ignacio Varela ul.homeSection__list > li.homeSection__item > article.authorPhotoOpinion > img.authorPhotoOpinion__avatar | /9cP1MLAA3KFEvVts3Atm84Uvhn8=/92x92/filters:format(png)/f... | 6.2 KiB | 4.9 KiB |
Optimize LCP by making the LCP image discoverable from the HTML immediately, and avoiding lazy-loading
Performance issues directly impact user engagement and conversion rates.
Avoid chaining critical requests by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load.
Performance issues directly impact user engagement and conversion rates.
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
Redirects introduce additional delays before the page can be loaded. Learn how to avoid page redirects.
Performance issues directly impact user engagement and conversion rates.
| URL | Time Spent |
|---|---|
| elconfidencial.com/ | 1.0 s |
| www.elconfidencial.com/ | 0.0 ms |
Time to Interactive is the amount of time it takes for the page to become fully interactive. Learn more about the Time to Interactive metric.
Performance issues directly impact user engagement and conversion rates.
The maximum potential First Input Delay that your users could experience is the duration of the longest task. Learn more about the Maximum Potential First Input Delay metric.
Performance issues directly impact user engagement and conversion rates.
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.
Multi-megabyte JavaScript bundles delay every interactive feature on the page.
This is the Lighthouse audit fired when too much JS is shipped relative to what executes. The fix isn't a config flag — it requires bundle analysis (webpack-bundle-analyzer, rollup-plugin-visualizer), splitting routes into chunks, lazy-loading off-screen components, and removing unused dependencies. Fundamentally different from minification: minifying reduces byte count, this reduces what's downloaded at all.
Source: Google web.dev / Lighthouse
| URL | Transfer Size | Est Savings |
|---|---|---|
| /stats/elconfidencial.com/home/?referrer=&customParams=%7... | 66.1 KiB | 33.2 KiB |
| sdk.mrf.io/statics/marfeel-sdk.js?id=154 | 59.1 KiB | 30.4 KiB |
Consider reducing the time spent parsing, compiling, and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to reduce Javascript execution time.
Performance issues directly impact user engagement and conversion rates.
| URL | Total CPU Time | Script Evaluation | Script Parse |
|---|---|---|---|
| Unattributable | 1.3 s | 449 ms | 0.0 ms |
| www.elconfidencial.com/ | 933 ms | 82 ms | 13 ms |
| /sdk/22ecd6bfac93de604efec0b75b2c796ee1675f92/modern/sdk.... | 427 ms | 352 ms | 51 ms |
| /sdk/22ecd6bfac93de604efec0b75b2c796ee1675f92/modern/ui-w... | 313 ms | 244 ms | 19 ms |
| geo.dailymotion.com/player/x1ir36.js | 229 ms | 79 ms | 9.9 ms |
| /stats/elconfidencial.com/home/?referrer=&customParams=%7... | 215 ms | 141 ms | 44 ms |
| es-config.sensic.net/s2s-web.js | 124 ms | 77 ms | 12 ms |
| geo.dailymotion.com/static/latest/cdn/pes.iframe.3ef6d36d.js | 97 ms | 87 ms | 1.5 ms |
| /c77e2162-8d89-4481-9def-dc2ab80b9604/js/module/router/st... | 79 ms | 77 ms | 0.1 ms |
| /sdk/22ecd6bfac93de604efec0b75b2c796ee1675f92/modern/src_... | 66 ms | 65 ms | 0.4 ms |
Consider reducing the time spent parsing, compiling and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to minimize main-thread work
Performance issues directly impact user engagement and conversion rates.
| Category | Time Spent |
|---|---|
| Script Evaluation | 1.8 s |
| Other | 1.1 s |
| Style & Layout | 558 ms |
| Rendering | 213 ms |
| Script Parsing & Compilation | 173 ms |
| Parse HTML & CSS | 108 ms |
| Garbage Collection | 80 ms |
Many navigations are performed by going back to a previous page, or forwards again. The back/forward cache (bfcache) can speed up these return navigations. Learn more about the bfcache
Performance issues directly impact user engagement and conversion rates.
| Failure reason | Failure type |
|---|---|
| The page has an unload handler in a sub frame. | Actionable |
| Pages with WebSocket cannot enter back/forward cache. | Pending browser support |
| The page did not finish loading before navigating away. | Not actionable |
Reduce unused rules from stylesheets and defer CSS not used for above-the-fold content to decrease bytes consumed by network activity. Learn how to reduce unused CSS.
Performance issues directly impact user engagement and conversion rates.
Large network payloads cost users real money and are highly correlated with long load times. Learn how to reduce payload sizes.
Performance issues directly impact user engagement and conversion rates.
Set an explicit width and height on image elements to reduce layout shifts and improve CLS. Learn how to set image dimensions
Performance issues directly impact user engagement and conversion rates.
| URL | |
|---|---|
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg | /8cRB-ikhm_yAoQNCsgAg3dxMclk=/filters:fill(white):format(... |
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg | /X_jdQMrtXC3VWVrws3xiGCWaKWA=/filters:fill(white):format(... |
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg | /430CIbGKjibo2Jy1k5PE1cBF8Yc=/filters:fill(white):format(... |
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg | /oNss5yktACNYlXF4lQJ44ReUYoU=/filters:fill(white):format(... |
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg | /R2wQErbxmK1nPvWn4JgT-4t2HC8=/filters:fill(white):format(... |
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg | /lJKDTLjyRRD16SnAx8a-QlczlmU=/filters:fill(white):format(... |
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg | /9Y6b_L48evK1ZODvXEshFv7M-nE=/filters:fill(white):format(... |
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg | /jlRybc6aacqsbzLn4sXwmhHh3Vo=/filters:fill(white):format(... |
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg | /iJfygL2Fhsl4b2bAdYXr7CxOqIw=/filters:fill(white):format(... |
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg | /UV6QPCPgdLmT5omOlT_Ndu4RJHM=/filters:fill(white):format(... |
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg | /eTn5whcI9j16S6y_JvFfE12-i7c=/filters:fill(white):format(... |
Logo div.didomi-popup-container > div.didomi-popup-view > div.didomi-popup-notice-logo-container > img.didomi-popup-notice-logo | static.ecestaticos.com/file/b3c/77b/6f4/b3c77b6f4672b46a3b9127c4c31c5ba7.svg |
More information about the performance of your application. These numbers don't directly affect the Performance score.
These checks highlight opportunities to improve the accessibility of your web app. Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so manual testing is also encouraged.
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg |
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg |
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg |
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg |
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg |
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg |
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg |
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg |
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg |
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg |
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg |
Screen reader users rely on frame titles to describe the contents of frames. Learn more about frame titles.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
ul.homeSection__list > li.homeSection__item > p > iframe ul.homeSection__list > li.homeSection__item > p > iframe |
ul.homeSection__list > li.homeSection__item > p > iframe ul.homeSection__list > li.homeSection__item > p > iframe |
ul.homeSection__list > li.homeSection__item > p > iframe ul.homeSection__list > li.homeSection__item > p > iframe |
ul.homeSection__list > li.homeSection__item > p > iframe ul.homeSection__list > li.homeSection__item > p > iframe |
ul.homeSection__list > li.homeSection__item > p > iframe.theBestSuscriptionWrapper ul.homeSection__list > li.homeSection__item > p > iframe.theBestSuscriptionWrapper |
Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. Learn how to make links accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.seoMenu > div.seoMenu__container > div.seoMenu__header > a.svgLogo__wrapper div.seoMenu > div.seoMenu__container > div.seoMenu__header > a.svgLogo__wrapper |
div.seoMenu__content > div.seoMenu__section > div.seoMenu__sectionContent > a.svgLogo__wrapper div.seoMenu__content > div.seoMenu__section > div.seoMenu__sectionContent > a.svgLogo__wrapper |
div.seoMenu__content > div.seoMenu__section > div.seoMenu__sectionContent > a.svgLogo__wrapper div.seoMenu__content > div.seoMenu__section > div.seoMenu__sectionContent > a.svgLogo__wrapper |
div.seoMenu__content > div.seoMenu__section > div.seoMenu__sectionContent > a.svgLogo__wrapper div.seoMenu__content > div.seoMenu__section > div.seoMenu__sectionContent > a.svgLogo__wrapper |
div.seoMenu__sectionContent > ul.seoMenu__list > li.seoMenu__listItemWrapper > a.svgLogo__wrapper div.seoMenu__sectionContent > ul.seoMenu__list > li.seoMenu__listItemWrapper > a.svgLogo__wrapper |
ec-mainheader.mainHeader > div.mainHeader__side > div.headerLogoSide__main > a.svgLogo__wrapper ec-mainheader.mainHeader > div.mainHeader__side > div.headerLogoSide__main > a.svgLogo__wrapper |
These are opportunities to improve the semantics of the controls in your application. This may enhance the experience for users of assistive technology, like a screen reader.
Properly ordered headings that do not skip levels convey the semantic structure of the page, making it easier to navigate and understand when using assistive technologies. Learn more about heading order.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
"Pido una medida, una sola": Albares apuesta por la línea dura con la UE por Is… article.smallPhoto > div.smallPhoto__titleSide > a.smallPhoto__titleLink > h3.smallPhoto__title |
These are opportunities to improve keyboard navigation in your application.
Errors logged to the console indicate unresolved problems. They can come from network request failures and other browser concerns. Learn more about this errors in console diagnostic audit
Performance issues directly impact user engagement and conversion rates.
| Source | Description |
|---|---|
Failed to load resource: net::ERR_CONNECTION_REFUSED | |
Failed to load resource: the server responded with a status of 400 () | |
TypeError: Cannot read properties of null (reading 'getBoundingClientRect')
at https://delorean.ecestaticos.com/c77e2162-8d89-4481-9def-dc2ab80b9604/js/module/router/static/OverflowShadows-Cd-wCyXk.js:1:591
at Array.forEach (<anonymous>)
at a.setUpObserver (https://delorean.ecestaticos.com/c77e2162-8d89-4481-9def-dc2ab80b9604/js/module/router/static/OverflowShadows-Cd-wCyXk.js:1:565)
at new a (https://delorean.ecestaticos.com/c77e2162-8d89-4481-9def-dc2ab80b9604/js/module/router/static/OverflowShadows-Cd-wCyXk.js:1:430)
at https://delorean.ecestaticos.com/c77e2162-8d89-4481-9def-dc2ab80b9604/js/module/router/static/file-list-CT3XBIIb.js:2:6376 |
These checks ensure that your page is following basic search engine optimization advice. There are many additional factors Lighthouse does not score here that may affect your search ranking, including performance on Core Web Vitals. Learn more about Google Search Essentials.
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg |
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg |
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg |
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg |
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg |
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg |
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg |
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg |
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg |
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg |
ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg ul.homeSection__list > li.homeSection__item > div.homeSection__partnerContent > img.homeSection__partnerImg |
Format your HTML in a way that enables crawlers to better understand your app’s content.
Industry-standard audits powered by Google Lighthouse. — Desktop
Key metrics that affect user experience. — Desktop
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
1.37 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
2.45 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
34 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.002
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
2.21 s
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
4.50 s
Audit breakdown by category with detailed findings.
Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity.
Performance issues directly impact user engagement and conversion rates.
Polyfills and transforms enable older browsers to use new JavaScript features. However, many aren't necessary for modern browsers. Consider modifying your JavaScript build process to not transpile Baseline features, unless you know you must support older browsers. Learn why most sites can deploy ES6+ code without transpiling
Shipping ES5 transpiled code to modern browsers wastes bytes — every user with an evergreen browser pays for compatibility you don't need.
Most users today run browsers that natively support ES6+, async/await, optional chaining, and the rest of modern JavaScript. Transpiling to ES5 'just in case' adds 20-40% to your bundle for no benefit. Configure your build to target a modern browserslist, or ship a differential bundle pair (modern + legacy) with the module/nomodule pattern.
Source: Google web.dev / Lighthouse
3rd party code can significantly impact load performance. Reduce and defer loading of 3rd party code to prioritize your page's content.
Performance issues directly impact user engagement and conversion rates.
A long cache lifetime can speed up repeat visits to your page. Learn more about caching.
Performance issues directly impact user engagement and conversion rates.
Your first network request is the most important. Reduce its latency by avoiding redirects, ensuring a fast server response, and enabling text compression.
Performance issues directly impact user engagement and conversion rates.
A forced reflow occurs when JavaScript queries geometric properties (such as offsetWidth) after styles have been invalidated by a change to the DOM state. This can result in poor performance. Learn more about forced reflows and possible mitigations.
Performance issues directly impact user engagement and conversion rates.
Reducing the download time of images can improve the perceived load time of the page and LCP. Learn more about optimizing image size
Performance issues directly impact user engagement and conversion rates.
| URL | Resource Size | Est Savings | |
|---|---|---|---|
Foto de Una constructora pagó 127.000 euros a la sociedad ligad… article.d-photo > div.d-photo__imgSide > figure.d-photo__imgWrapper > img.d-photo__img | /GW0_pKHIm1LLzk_2S132HZfk1G0=/filters:format(jpg):quality... | 94.0 KiB | 84.8 KiB |
Foto de El jefe de gabinete de Maroto confirma que la ministra cerró una reunió… article.d-photo > div.d-photo__imgSide > figure.d-photo__imgWrapper > img.d-photo__img | /Esql5i7Rtx_XDYV484Vo0HQTc7c=/filters:format(jpg):quality... | 82.6 KiB | 73.5 KiB |
Foto de La nueva Apple tras Cook: claves del cambio y por qué escoge al… article.m-fotoCentral > div.m-fotoCentral__imgSide > figure.m-fotoCentral__imgWrapper > img.m-fotoCentral__img | /MMwp_kvtzw1RsdTNo3KZI-D6Eag=/filters:format(jpg):quality... | 91.7 KiB | 72.0 KiB |
Foto de La prioridad nacional, penúltimo regalo de Vox al sanch… ul.group__wrapper > li > article.a-opinion > img.a-opinion__avatar | /9cP1MLAA3KFEvVts3Atm84Uvhn8=/92x92/filters:format(png)/f... | 6.2 KiB | 5.7 KiB |
Optimize LCP by making the LCP image discoverable from the HTML immediately, and avoiding lazy-loading
Performance issues directly impact user engagement and conversion rates.
Avoid chaining critical requests by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load.
Performance issues directly impact user engagement and conversion rates.
Requests are blocking the page's initial render, which may delay LCP. Deferring or inlining can move these network requests out of the critical path.
Performance issues directly impact user engagement and conversion rates.
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
Redirects introduce additional delays before the page can be loaded. Learn how to avoid page redirects.
Performance issues directly impact user engagement and conversion rates.
| URL | Time Spent |
|---|---|
| elconfidencial.com/ | 476 ms |
| www.elconfidencial.com/ | 0.0 ms |
Time to Interactive is the amount of time it takes for the page to become fully interactive. Learn more about the Time to Interactive metric.
Performance issues directly impact user engagement and conversion rates.
Reduce unused rules from stylesheets and defer CSS not used for above-the-fold content to decrease bytes consumed by network activity. Learn how to reduce unused CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| www.ecestaticos.com/static/cache/css/97febe774e870171fab689c7c3119065/1/ | 33.1 KiB | 31.0 KiB |
| 17.5 KiB | 14.6 KiB |
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.
Multi-megabyte JavaScript bundles delay every interactive feature on the page.
This is the Lighthouse audit fired when too much JS is shipped relative to what executes. The fix isn't a config flag — it requires bundle analysis (webpack-bundle-analyzer, rollup-plugin-visualizer), splitting routes into chunks, lazy-loading off-screen components, and removing unused dependencies. Fundamentally different from minification: minifying reduces byte count, this reduces what's downloaded at all.
Source: Google web.dev / Lighthouse
| URL | Transfer Size | Est Savings |
|---|---|---|
| www.googletagmanager.com/gtm.js?id=GTM-NC2TW8 | 172.3 KiB | 81.3 KiB |
| www.ecestaticos.com/static/cache/js/8dc59f7cf8656d67459e40289fe058f0/1/ | 104.7 KiB | 74.7 KiB |
| www.googletagmanager.com/gtag/destination?id=AW-961505333&cx=c>m=4e64h1 | 135.8 KiB | 58.6 KiB |
| www.googletagmanager.com/gtag/destination?id=AW-884700071&cx=c>m=4e64h1 | 123.7 KiB | 56.5 KiB |
| /sdk/22ecd6bfac93de604efec0b75b2c796ee1675f92/modern/sdk.... | 101.8 KiB | 43.7 KiB |
| /pages/versioned/common-scripts/4ce8c7df8d425cc5046457682... | 55.1 KiB | 28.1 KiB |
| sdk.mrf.io/statics/marfeel-sdk.js?id=154 | 59.1 KiB | 26.3 KiB |
| www.ecestaticos.com/static/cache/js/74eef46594d1bbad58e34208ec030bb8/1/ | 27.4 KiB | 25.9 KiB |
| /c77e2162-8d89-4481-9def-dc2ab80b9604/js/module/router/st... | 21.7 KiB | 20.6 KiB |
Many navigations are performed by going back to a previous page, or forwards again. The back/forward cache (bfcache) can speed up these return navigations. Learn more about the bfcache
Performance issues directly impact user engagement and conversion rates.
| Failure reason | Failure type |
|---|---|
| Pages with WebSocket cannot enter back/forward cache. | Pending browser support |
Large network payloads cost users real money and are highly correlated with long load times. Learn how to reduce payload sizes.
Performance issues directly impact user engagement and conversion rates.
Set an explicit width and height on image elements to reduce layout shifts and improve CLS. Learn how to set image dimensions
Performance issues directly impact user engagement and conversion rates.
| URL | |
|---|---|
placeholder image div.element > div.generic-widget > p > img | static.ecestaticos.com/file/9bb/e80/df8/9bbe80df86c2344edcb93837a3212fc4.png |
Logo div.didomi-popup-container > div.didomi-popup-view > div.didomi-popup-notice-logo-container > img.didomi-popup-notice-logo | static.ecestaticos.com/file/b3c/77b/6f4/b3c77b6f4672b46a3b9127c4c31c5ba7.svg |
More information about the performance of your application. These numbers don't directly affect the Performance score.
These checks highlight opportunities to improve the accessibility of your web app. Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so manual testing is also encouraged.
Low-contrast text is difficult or impossible for many users to read. Learn how to provide sufficient color contrast.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
¿Ya eres suscriptor? div.didomi-exterior-border > div.didomi-popup-container > div.didomi-popup-login > span |
Inicia sesión div.didomi-exterior-border > div.didomi-popup-container > div.didomi-popup-login > a |
Puedes elegir entre aceptar las cookies o rechazarlas. div.didomi-popup-notice-text-container > div.didomi-popup-notice-text > div > p |
Al aceptar la instalación de cookies, contribuyes a mejorar la diversidad y cal… div.didomi-popup-notice-text-container > div.didomi-popup-notice-text > div > p |
Si las rechazas, no podremos ofrecerte publicidad ni contenido personalizado, d… div.didomi-popup-notice-text-container > div.didomi-popup-notice-text > div > p |
22 abr 2026 body.v2 > nav.header-home-block > div.header-home-container > div.header-home-left |
12:46 div.m-fotoCentral__titleSide > div.articleInfo > div.articleInfo__extra > span.articleInfo__date |
políticas de cookies div.cookieCard > div.cookieCard__section > p.cookieCard__paragraph > a.cookieCard__link |
Quiénes somos div.sectionsFooter__section > ul.sectionsFooter__list > li > a.sectionsFooter__listItemLink |
Trabaja con nosotros div.sectionsFooter__section > ul.sectionsFooter__list > li > a.sectionsFooter__listItemLink |
Apps div.sectionsFooter__section > ul.sectionsFooter__list > li > a.sectionsFooter__listItemLink |
Facebook div.sectionsFooter__section > ul.sectionsFooter__list > li > a.sectionsFooter__listItemLink |
Twitter div.sectionsFooter__section > ul.sectionsFooter__list > li > a.sectionsFooter__listItemLink |
Rss div.sectionsFooter__section > ul.sectionsFooter__list > li > a.sectionsFooter__listItemLink |
Lotería de Navidad 2025 div.sectionsFooter__section > ul.sectionsFooter__list > li > a.sectionsFooter__listItemLink |
Comprobar Lotería de Navidad 2025 div.sectionsFooter__section > ul.sectionsFooter__list > li > a.sectionsFooter__listItemLink |
Lotería del Niño 2026 div.sectionsFooter__section > ul.sectionsFooter__list > li > a.sectionsFooter__listItemLink |
Comprobar Lotería del Niño 2026 div.sectionsFooter__section > ul.sectionsFooter__list > li > a.sectionsFooter__listItemLink |
© TITANIA COMPAÑÍA EDITORIAL, S.L. 2025. España. Todos los derechos reservados div.sectionsFooter__wrapper > div.legalFooter__wrapper > div.legalFooter > a.legalFooter__link |
Condiciones div.sectionsFooter__wrapper > div.legalFooter__wrapper > div.legalFooter > a.legalFooter__link |
Política de Privacidad div.sectionsFooter__wrapper > div.legalFooter__wrapper > div.legalFooter > a.legalFooter__link |
Política de Cookies div.sectionsFooter__wrapper > div.legalFooter__wrapper > div.legalFooter > a.legalFooter__link |
Configuración de cookies div.sectionsFooter__wrapper > div.legalFooter__wrapper > div.legalFooter > a.legalFooter__link |
Auditado por GFK div.sectionsFooter__wrapper > div.legalFooter__wrapper > div.legalFooter > a.legalFooter__link |
Canal Interno de Información div.sectionsFooter__wrapper > div.legalFooter__wrapper > div.legalFooter > a.legalFooter__link |
Datos de mercado proporcionados por TradingView div.sectionsFooter__wrapper > div.legalFooter__wrapper > div.legalFooter > a.legalFooter__link |
These are opportunities to improve the legibility of your content.
Screen reader users rely on frame titles to describe the contents of frames. Learn more about frame titles.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.element > div.generic-widget > p > iframe div.element > div.generic-widget > p > iframe |
Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. Learn how to make links accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.seoMenu > div.seoMenu__container > div.seoMenu__header > a.svgLogo__wrapper div.seoMenu > div.seoMenu__container > div.seoMenu__header > a.svgLogo__wrapper |
div.seoMenu__content > div.seoMenu__section > div.seoMenu__sectionContent > a.svgLogo__wrapper div.seoMenu__content > div.seoMenu__section > div.seoMenu__sectionContent > a.svgLogo__wrapper |
div.seoMenu__content > div.seoMenu__section > div.seoMenu__sectionContent > a.svgLogo__wrapper div.seoMenu__content > div.seoMenu__section > div.seoMenu__sectionContent > a.svgLogo__wrapper |
div.seoMenu__content > div.seoMenu__section > div.seoMenu__sectionContent > a.svgLogo__wrapper div.seoMenu__content > div.seoMenu__section > div.seoMenu__sectionContent > a.svgLogo__wrapper |
div.seoMenu__sectionContent > ul.seoMenu__list > li.seoMenu__listItemWrapper > a.svgLogo__wrapper div.seoMenu__sectionContent > ul.seoMenu__list > li.seoMenu__listItemWrapper > a.svgLogo__wrapper |
div.block > div.group > h4.vanitatisHeader15__logoWrapper > a div.block > div.group > h4.vanitatisHeader15__logoWrapper > a |
These are opportunities to improve the semantics of the controls in your application. This may enhance the experience for users of assistive technology, like a screen reader.
Properly ordered headings that do not skip levels convey the semantic structure of the page, making it easier to navigate and understand when using assistive technologies. Learn more about heading order.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
La UE mete los ERE en la campaña con un golpe a la estrategia del PP article.a-apoyo > div.a-apoyo__titleSide > a.a-apoyo__titleLink > h3.a-apoyo__title |
Otras noticias section.block > section.group > div.group__titleSide > h4.group__title |
These are opportunities to improve keyboard navigation in your application.
Screen readers have a specific way of announcing lists. Ensuring proper list structure aids screen reader output. Learn more about proper list structure.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Deportes
El Madrid cumple el trámite ante el Alavés y sigue con el sueño de la … section.area > section.block > section.group > ul.group__wrapper |
Josep Martí Blanch
21
En Kitchen son todos
los que están pero no
están todos lo… section.area > section.block > section.group > ul.group__wrapper |
Últimas noticias
Las primeras palabras de Morante de la Puebla tras ser operado… section.area > section.block > section.group > ul.group__wrapper |
section.area > section.block > section.group > ul.group__wrapper section.area > section.block > section.group > ul.group__wrapper |
IBEX 35 section.area > section.block > section.group > ul.group__wrapper |
section.area > section.block > section.group > ul.group__wrapper section.area > section.block > section.group > ul.group__wrapper |
placeholder image div.bestec__wrapper > section.block > section.group > ul.group__wrapper |
Los favoritos del suscriptor
Una gran academia de oposiciones cierra por sorpre… section.area > section.block > section.group > ul.group__wrapper |
These are opportunities to improve the experience of reading tabular or list data using assistive technology, like a screen reader.
Touch targets with sufficient size and spacing help users who may have difficulty targeting small controls to activate the targets. Learn more about touch targets.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
© TITANIA COMPAÑÍA EDITORIAL, S.L. 2025. España. Todos los derechos reservados div.sectionsFooter__wrapper > div.legalFooter__wrapper > div.legalFooter > a.legalFooter__link |
Condiciones div.sectionsFooter__wrapper > div.legalFooter__wrapper > div.legalFooter > a.legalFooter__link |
Auditado por GFK div.sectionsFooter__wrapper > div.legalFooter__wrapper > div.legalFooter > a.legalFooter__link |
Canal Interno de Información div.sectionsFooter__wrapper > div.legalFooter__wrapper > div.legalFooter > a.legalFooter__link |
Datos de mercado proporcionados por TradingView div.sectionsFooter__wrapper > div.legalFooter__wrapper > div.legalFooter > a.legalFooter__link |
These items highlight common accessibility best practices.
Image display dimensions should match natural aspect ratio. Learn more about image aspect ratio.
Performance issues directly impact user engagement and conversion rates.
| URL | Aspect Ratio (Displayed) | Aspect Ratio (Actual) | |
|---|---|---|---|
Una gran academia de oposiciones cierra por sorpresa y deja a mil estudiantes c… li.theBestSuscription__item > div.theBestSuscription__itemContainer > figure.theBestSuscription__itemFigure > img.eclazy | /aSaRgJRlSZC6aJERDQRiDcTYfMk=/0x0:904x553/483x271/filters... | 146 x 84 (1.74) | 483 x 271 (1.78) |
El estamento militar español avisa de riesgos en Ceuta y Melilla y plantea refo… li.theBestSuscription__item > div.theBestSuscription__itemContainer > figure.theBestSuscription__itemFigure > img.eclazy | /d4jYjrN9sfOgtY_BGji6iG8K220=/0x0:1318x1055/483x271/filte... | 146 x 84 (1.74) | 483 x 271 (1.78) |
El VAR frustra el regreso triunfal de Bárcenas al estadio que le convirtió en l… li.theBestSuscription__item > div.theBestSuscription__itemContainer > figure.theBestSuscription__itemFigure > img.eclazy | /6nkgkSpv0e5_URX5bNnzJ51i6bQ=/0x0:2272x1515/483x271/filte... | 146 x 84 (1.74) | 483 x 271 (1.78) |
Morante, herido muy grave en el albero de Sevilla li.theBestSuscription__item > div.theBestSuscription__itemContainer > figure.theBestSuscription__itemFigure > img.eclazy | /LZImqG-M8qu89aEig8jb_q3VVBQ=/0x0:2272x1515/483x271/filte... | 146 x 84 (1.74) | 483 x 271 (1.78) |
Una constructora pagó 127.000 € a la sociedad vinculada a Zapatero para que le … li.theBestSuscription__item > div.theBestSuscription__itemContainer > figure.theBestSuscription__itemFigure > img.eclazy | /hm7QpgLRZL0LpOtu-laQ9uPH28E=/0x0:2272x1515/483x271/filte... | 146 x 84 (1.74) | 483 x 271 (1.78) |
li.theBestSuscription__item > div.theBestSuscription__itemContainer > figure.theBestSuscription__itemFigure > img.eclazy li.theBestSuscription__item > div.theBestSuscription__itemContainer > figure.theBestSuscription__itemFigure > img.eclazy | /40wtAmeB17D4wjp6S4OMimXfehA=/0x0:2272x1275/0x271/filters... | 146 x 84 (1.74) | 483 x 271 (1.78) |
La prioridad nacional, penúltimo regalo de Vox al sanchismo li.theBestSuscription__item > div.theBestSuscription__itemContainer > figure.theBestSuscription__itemFigure > img.eclazy | /ffAFna-bxZJ30_0ufzizBLoBSnI=/0x24:2273x1299/483x271/filt... | 146 x 84 (1.74) | 483 x 271 (1.78) |
Bruselas mete los ERE en la campaña con un golpe a la estrategia del PP para ma… li.theBestSuscription__item > div.theBestSuscription__itemContainer > figure.theBestSuscription__itemFigure > img.eclazy | /iXQt0t6F3XVOFFclkvAo0r55kWo=/0x0:2272x1518/483x271/filte... | 146 x 84 (1.74) | 483 x 271 (1.78) |
li.theBestSuscription__item > div.theBestSuscription__itemContainer > figure.theBestSuscription__itemFigure > img.eclazy li.theBestSuscription__item > div.theBestSuscription__itemContainer > figure.theBestSuscription__itemFigure > img.eclazy | /sbGsgKFDODtsWfz9EBxx31pzR_s=/0x240:2272x1515/0x271/filte... | 146 x 84 (1.74) | 483 x 271 (1.78) |
Deprecated APIs will eventually be removed from the browser. Learn more about deprecated APIs.
Performance issues directly impact user engagement and conversion rates.
| Deprecation / Warning | Source |
|---|---|
| Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/. |
Errors logged to the console indicate unresolved problems. They can come from network request failures and other browser concerns. Learn more about this errors in console diagnostic audit
Performance issues directly impact user engagement and conversion rates.
| Source | Description |
|---|---|
/c77e2162-8d89-4481-9def-dc2ab80b9604/js/module/router/st... line 6, col 26 | RangeError: Invalid array length
at get indicatorsTpl (https://delorean.ecestaticos.com/c77e2162-8d89-4481-9def-dc2ab80b9604/js/module/router/static/ec-controls-BkMhq-Ww.js:7:27)
at f.render (https://delorean.ecestaticos.com/c77e2162-8d89-4481-9def-dc2ab80b9604/js/module/router/static/ec-controls-BkMhq-Ww.js:25:20)
at f.update (https://delorean.ecestaticos.com/c77e2162-8d89-4481-9def-dc2ab80b9604/js/module/router/static/lit-element-DWEJhvLm.js:19:260)
at f.performUpdate (https://delorean.ecestaticos.com/c77e2162-8d89-4481-9def-dc2ab80b9604/js/module/router/static/lit-element-DWEJhvLm.js:9:5310)
at f.scheduleUpdate (https://delorean.ecestaticos.com/c77e2162-8d89-4481-9def-dc2ab80b9604/js/module/router/static/lit-element-DWEJhvLm.js:9:4776)
at f._$ET (https://delorean.ecestaticos.com/c77e2162-8d89-4481-9def-dc2ab80b9604/js/module/router/static/lit-element-DWEJhvLm.js:9:4684) |
These checks ensure that your page is following basic search engine optimization advice. There are many additional factors Lighthouse does not score here that may affect your search ranking, including performance on Core Web Vitals. Learn more about Google Search Essentials.
Send Feedback