0

Can we add data in application(registration form/candidates details etc) using JMeter? I create script -HTTP Request where I used ${__UUID()} function to create random UID -Create HTTP Req with parameters -Add listener to view result

Script execurted successfully but when i check in application the data not added /displyed

I create script -HTTP Request where I used ${__UUID()} function to create random UID -Create HTTP Req with parameters -Add listener to view result

Nil.
  • 1
  • 1

1 Answers1

0

JMeter acts on HTTP protocol level, given you properly configure JMeter to behave like a real browser it will send the same HTTP request(s) as the real browser does hence the "record" (whatever it means) will be created.

You can add View Results Tree listener to your test plan, this way you will be able to see the request and response details and from the response you should be able to figure out what's wrong with your request.

Dmitri T
  • 159,985
  • 5
  • 83
  • 133