Reputation: 9937
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
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.
You can also see this information in JSON format if you save the Network data to a HAR file:
Upvotes: 22