Not sure whether anybody has similar query here, assume we do a performance tracing on a single page application completely loaded on a url, how to get the total waiting time on networking time for all resources?
Total network waiting time for all http requests
466 Views Asked by Ethan Wu At
1
There are 1 best solutions below
Related Questions in GOOGLE-CHROME-DEVTOOLS
- Is it possible to manipuate 3rd party Chrome Extensions Network Reqeuests?
- How do i load a Chrome extension when manifest.json is in a subfolder (app) instead of main folder
- Reading the user's console errors from a chrome extension
- Chrome Selenium CDP Bidi API - Next Commands sended to Target Session have no effect while the initial one does work
- When I'm typing an Xpath or CSS selector in the console why won't matching results appear while typing? Results only appear after pressing Enter
- JS throttling with Chrome Extension
- How can I disable livewire dev tools on production environment?
- Chrome Devtools how to send/edit websocket messages in binary?
- How do I use Chrome DevTools to remove the script that adds "promoted" labels to LinkedIn job postings?
- Interpreting Chrome memory tool's results for a memory leak?
- Google Chrome 123 Update: Chrome is making preflight check for document/Redirect type GET request
- Chrome DevTools font has been changed to Monospace after update
- Not able to add a custom header using declarative_net_request and rule resources in chrome extension
- Issue with AJAX Request Preview in Chrome DevTools Version 123.0.6312.59
- How do I dig deeper in the Performance panel for a function call that consumes a long time but 90% of the time was just waiting?
Related Questions in SINGLE-PAGE-APPLICATION
- How can I using useCookie in Nuxt 3 - Laravel API directory?
- Problem loading all of the resources for a single page application from REST API using Node.js and Express.js
- Angular Reusable Component with same selector
- Lost instance of my grpc in blazor webassembly when reload page
- Dynamically add pages in AEM Remote Spa
- Back Button in Onsen UI Navigator Triggering Validation Checks
- CSRF token from the 'X-Csrftoken' HTTP header incorrect
- Issue with Uploading File to Amazon S3 Bucket: File Saved as Blank
- Ensure USER is set to a value between 10000 and 20000
- ActionController::RoutingError (No route matches [GET] "/api/v1/contacts"): Rails + React
- Possible Bootstrap 5 bug when using data-bs-toggle="collapse" and offcanvas component. Fix?
- How to setup and configure service workers for a single page application to show an offline page
- Trying to make a single page application using window.onpopstate
- How do i securly save content in an vue SPA app
- Using both SPA and Blade view pages during authentication
Related Questions in WEB-PERFORMANCE
- 103 Early hints response not sending properly with HTTP/2 request
- TBT but for the whole life of the page
- Why long frame intervals do not the same as long tasks?
- How to measure First Screen Paint?
- High Lighthouse Total Blocking Time despite no long task
- Re-evaluation of scripts in SSR PWAs vs SPA PWAs?
- Does lazy-loading of CSS trigger a recalculation of styles for the whole page and is it important?
- To imitate render blocking and why this attempt has not succeed?
- High-Res profiling using DevTools
- Ask for reasons why a div triggers an LCP and FCP problem
- Chrome dev tools showing weird numbers during performance profiling
- Google tag assistant "No tags found" after switching <Script> strategy from "afterInteractive" to "worker" in Next JS
- Is it possible to reduce the amount of sources in this picture element?
- Discrepancy in Performance Timings between Chrome and Firefox for React App Rendering
- Chrome Dev tool coverage tab for minified css
Related Questions in FRONT-END-OPTIMIZATION
- How can i make background image show in mobile version of my code after using media query?
- Improving Frontend Error Logs with Global Exception Handling in Angular
- Is there a frontend component building tool that can be used across frameworks and versions?
- How to prevent Ngrx Feature modules from ending up in main.js for Angular?
- Total network waiting time for all http requests
- Filter List to render or conditionally render list's elements
- Deferred script is still render blocking according to webpagetest
- LCP result is totally opposite from performance API than the pagespeed insights or webpagetest
- Angular: get updated records after comment added
- What is the best way to create user and admin dashbaord switch for Nextjs app?
- JS Frontend - Find the count of duplicates and append value in JavaScript Array List for multiple occurrences (C#)
- Why does error like net::ERR_ABORTED 404 occur on an Shopify product details page
- Does .includes() run during a change detection loop if the variable associated with it does not change? / Alternative to .includes()
- How to put Connection string details in Typescript page without having any security risk?
- What is the advantage of has sperate front-end page for mobile and desktop?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?

I've never heard about an existing tool that would provide the exact metric you're looking for. But you could write a mini script that uses the Resource Timing API. It is easy to list all network requests and sum up waiting times. More info here.
Then, if you need to automate measures, you can use Puppeteer to run your script on a headless Chrome.