I have searched on internet, there are lot of ways to convert Postman script to JMeter script, but none showing vice versa.
Have a JMeter API script and want to convert to Postman Collection or Postman readable format.
Any help will be appreciated.
I have searched on internet, there are lot of ways to convert Postman script to JMeter script, but none showing vice versa.
Have a JMeter API script and want to convert to Postman Collection or Postman readable format.
Any help will be appreciated.
Postman has a proxy built-in:
Start it, then configure in JMeter the proxy to point to Postman:
Run plan and you're done.
In conjunction to UBIK LOAD PACK answer, what worked for me on windows:
1 Enable proxy listening mode on Postman

2 Restart postman
3 Run the script via CLI, to generate some data as:
jmeter -n -t SimpleController.jmx -l log.jtl -H 127.0.0.1 -P 9999
(assuming your script name is: SimpleController.jmx)