Reputation: 13
I use JMeter to record HTTP scenario and do load testing. Now I need to correlate some values using Regular Expression Extractor, for example ${secure_id}, but I don't know how to find all requests where this variable is used. I can substitute this step by step, but it is necessary for me to do it automatically in all places where it is used. Thanks for any answer
Upvotes: 1
Views: 640
Reputation: 168157
Have you seen "Search" option in JMeter's main menu? It's available since JMeter 2.9 if not earlier
Upvotes: 1
Reputation: 347
You could open your TestPlan.jmx file with text editor notepad++ for example and find+replace all occurrences of ${secure_id} here is an example
Upvotes: 2