I have seen many discussions on the trick to make auto exporting for POST requests, but that does not work reliably or behave as same as GET requests.
For every GET requests, after pageloadtimeout (which defaults to 1500ms), the requests are automatically saved to har directory that I specified.
However, for POST request, it seems it won't be triggered to be saved by itself. If I set pageloadtimeout to be very big, as some people suggested, those POST requests will be combined with preceding GET request. Since we can't tell how long each request (GET and POST) will take, the pageloadtimeout has to be set very long in order to cover all POST requests in the test. However, the biggest problem is those POST requests are combined into one har with preceding GET request.
What I want to achieve is to capture har file for each individual click (for both GET and POST), so we can monitor client performance on per user click basis. I set extensions.firebug.net.defaultPersist to false, which nicely group the GET requests into separate har files per click. However, I can't make POST requests to be saved in its own har file without attach to preceding GET request.
I am using latest available firefox (v33.0), firebug (2.0.4), netexport (0.9b6).
I have seen many discussions on the trick to make auto exporting for POST requests, but that does not work reliably or behave as same as GET requests.
For every GET requests, after pageloadtimeout (which defaults to 1500ms), the requests are automatically saved to har directory that I specified.
However, for POST request, it seems it won't be triggered to be saved by itself. If I set pageloadtimeout to be very big, as some people suggested, those POST requests will be combined with preceding GET request. Since we can't tell how long each request (GET and POST) will take, the pageloadtimeout has to be set very long in order to cover all POST requests in the test. However, the biggest problem is those POST requests are combined into one har with preceding GET request.
What I want to achieve is to capture har file for each individual click (for both GET and POST), so we can monitor client performance on per user click basis. I set extensions.firebug.net.defaultPersist to false, which nicely group the GET requests into separate har files per click. However, I can't make POST requests to be saved in its own har file without attach to preceding GET request.
I am using latest available firefox (v33.0), firebug (2.0.4), netexport (0.9b6).