Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does status finished mean in Google Chrome developer tools network tab?

Somehow my javascript files are not loaded (size = 0) and in status I see the text "Finished". JS fails to operate. Does anyone know what is wrong and what I should do?

like image 398
Velaro Avatar asked Jan 14 '16 08:01

Velaro


People also ask

What is finish in network tab Chrome?

The Finish time in Chrome Devtools includes the asynchronously loading (non blocking) objects/elements on the page which may continue downloading way after the onLoad event for the page has fired.

What is network tab in Chrome developer tools?

Then, in Developer Tools, navigate to "Network" and re-load the page. When you do, you should see all of the requests that make up the page load into view on a timeline. This is the network view, commonly referred to as a waterfall chart, and it's helpful for understanding how fast a website loads.

How do I check my network on Google Chrome?

Open DevTools by pressing Control+Shift+J or Command+Option+J (Mac). The Console panel opens. You might prefer to dock DevTools to the bottom of your window. Click the Network tab.

How do I view network tab responses?

To view the response body to a request: Click the URL of the request, under the Name column of the Requests table. Click the Response tab.


1 Answers

Have you tried clearing the Cache, try force reloading the page with

Ctrl + Shift + R (or CMD + Shift + R on Mac)

Or Chrome has a 'Disable Cache' checkbox in dev tools under the 'Network' tab.

Hope this helps.

like image 174
Aaron Russell Avatar answered Oct 06 '22 00:10

Aaron Russell