Jmeter+Postman , jmeter isnt connecting with jmeter

Postman Collection that i run isnt appearing in jmeter i changed the proxy in postman and jmeter but still im facing the same problem

Upvotes: 0

Views: 302

Answers (2)

h__g
h__g

Reputation: 82

  • add ssl certificate
  • configure the proxy
  • if computer have something like special vpn or work vpn, close it

Upvotes: 0

Dmitri T
Dmitri T

Reputation: 168092

  1. Make sure to start the HTTP(S) Test Script Recorder, you need to click the "Start" button

    enter image description here

  2. If your Postman test is using HTTPS protocol - you will additionally need to install JMeter's certificate into postman

    enter image description here

    the file is called ApacheJMeterTemporaryRootCA.crt and it's being generated in "bin" folder of your JMeter installation when you start the HTTP(S) Test Script Recorder

  3. Configure Postman to use JMeter as the proxy:

    enter image description here

  4. Assuming all above steps are successfully implemented you should be able to record the Postman collection execution in JMeter. See How to Convert Your Postman API Tests to JMeter for Scaling article for more comprehensive instructions if needed

Upvotes: 2

Related Questions