Reputation: 9530
Basically I have a webpage and inside it I have an iframe to load another webpage from a different domain. It moves slow and I want to prove that the entire page is slow just because of the page inside the iframe.
Is there any way to measure what is the overall page load and how much % from that total comes from the iframe ? What tools I can use to obtain some measurements?
Upvotes: 0
Views: 4017
Reputation: 9
It would have helped if you would have posted your website here. However, you could try running a PageSpeed insights test here using Google's PageSpeed Insights tool -https://developers.google.com/speed/pagespeed/insights/
You could also use the Chrome browser extension called Lighthouse:
https://chrome.google.com/webstore/detail/lighthouse/blipmdconlkpinefehnmjammfjpmpbjk
Upvotes: 0
Reputation: 1582
You can measure in the Chrome browser
go to [Inspect Element -> Performance] and also [Inspect Element -> Network] and reload page to get full details
Upvotes: 1