channa ly
channa ly

Reputation: 9937

How to check the size of request (upload content) in Chrome dev tool

I am maintaining a legacy Cordova mobile app. The app allows user to send a really big amount of data in ajax. I would like to measure the bottleneck of the request size in some low spec mobile device.

Is there a way to check in Chrome dev tool to see the request size?

It seems in the network tab there is info about the size and payload of the response only.

Upvotes: 17

Views: 40536

Answers (1)

Gideon Pyzer
Gideon Pyzer

Reputation: 24068

You can see the Request Headers in the Network tab. They appear below the Response Headers, so they can easily be missed.

Example: Upload of an IPA file to Google Drive.

Request You can also see this information in JSON format if you save the Network data to a HAR file:

HAR

Upvotes: 22

Related Questions