Using Firebug for extracting JSON Strings for JMETER
I was running some tests these days, and while checking some page behaviour using Firebug, i noticed a new tab (plugin) called Network. I was amazed to see the power of this small tab.
Basically this is a live monitor of the communication between client and server, returning all the gets/posts that have been exchanged between the two sides, with complete path and payload. For those of us using JSON Strings in our JMeter tests….priceless.
So basically all you have to do whenever you want to check the JSON payload or response, is activate the Network module inside Firebug, and run your test. You will get the whole list of Gets and Posts, including the Post parameters, and the Response (which may include JSON Strings or not, of course)
It looks like this:
Expanding the POST request, will show both POST parameters, and Response Message in the form of a JSON String:
As you can see, there is a POST tab and an Answer tab. I did not print the whole graph, but it is there, and you can just copy and paste those JSON Strings into your JMETER test.
Congrats Firebug…cool isn’t it?
The


Latest comments