The Computer Oracle

Where is the POST tab in Chrome Developer Tools Network?

--------------------------------------------------
Hire the world's top talent on demand or became one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: Cosmic Puzzle

--

Chapters
00:00 Where Is The Post Tab In Chrome Developer Tools Network?
00:47 Answer 1 Score 32
01:05 Accepted Answer Score 2
01:32 Answer 3 Score 3
01:44 Thank you

--

Full question
https://superuser.com/questions/395919/w...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#googlechromedevtools

#avk47



ANSWER 1

Score 32


  1. Click the Record button before submitting the form:
    Record Button


  2. Select the correct file (reduce clutter by clicking the category at the bottom)
    Document Selection


  3. Then you can see the POST data:
    POST Data



ANSWER 2

Score 3


For Seam applications or other frameworks that use a POST-Redirect pattern, you might have to use the Other category filter instead of the Documents filter to see the Form Data section.




ACCEPTED ANSWER

Score 2


It seems that a) there isn't a Post tab anymore, now there is just the Form Data list that is usually present when you use the POST method for an HTML form. I realised that when you use enctype="multipart/form-data" in the tag, you won't get the Form Data list, but you can still see the data inside the payload list as pointed out by @Synetech.