Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to send dynamic URL parameter with JMeter

I want to send URL (PATH) as /controller_1/1/ /controller_2/2/start

But the parameter #2 of controller_2 is dynamic.

How to send that parameter?

like image 565
rupali Avatar asked Mar 01 '11 09:03

rupali


1 Answers

make the parameter a variable: /controller_2/${controller2_parameter}/start

Then you define the value of ${controller2_parameter} wherever and however appropriate: a CSV dataset config, using a regular expression extractor to scrape from a webpage, etc.

like image 189
BlackGaff Avatar answered Sep 19 '22 13:09

BlackGaff