Reputation: 4607
I am trying to simulate a POST that is occurring on a web page via AJAX. Is there a tool where I can log the GET/POST requests so I can see exactly what is being sent by my browser?
I use Firebug, but not sure if there is a place on that app where I can view the transactions.
Please let me know the best way to go about this.
Upvotes: 1
Views: 54
Reputation: 175776
On Windows Fiddler can observe/break/record/replay requests system wide.
Upvotes: 0
Reputation: 1627
Chrome's developer tools has this functionality built in. I'm using the beta channel of chrome, and to see the information, right click in your page and select "inspect element"
This will bring up the element inspecter, on which you can select the "Network" tab. Once there, refresh your page and it will track all network activity and allow you to see the full transaction of each request.
Upvotes: 0
Reputation: 1963
You can use the "Net" tab in firebug console to see all the transactions along with the response & request data. Take a look at - http://getfirebug.com/network
Upvotes: 3