Reputation: 51
Need to record the application that is on CEGID Retail application. Script have 8 transactions and each transaction have 100 URL that is useful in script. We can capture request in fiddler. can we record using Jmeter otherwise need to take requests from fiddler and put in Jmeter manually that will consume more time.
Please suggest a better approach for this. enter image description here
after converting fiddler session to .har and .har to .jmx request body is getting removed. Please suggest on this.
Fiddler recording you can export the captured requests in HAR format like File -> Export Sessions -> HTTP Archive 1.1 and once done you can convert them into JMeter .jmx script using online HAR to JMX conversion tool
is there any setting need to change?
Upvotes: 0
Views: 128
Reputation: 168147
If the application is using HTTP and/or HTTP(S) protocols you should be able to normally record it using JMeter's HTTP(S) Test Script Recorder, just
ApacheJMeterTemporaryRootCA.crt
and it's generated in "bin" folder of your JMeter installationSee Recording Tests user manual chapter for more details
If you already have a Fiddler recording you can export the captured requests in HAR format like File -> Export Sessions -> HTTP Archive 1.1
and once done you can convert them into JMeter .jmx script using online HAR to JMX conversion tool
Upvotes: 0