I'm using JMeter Proxy Server to record series of HTTP requests from a program and JMeter has already transform these HTTP requests to samplers for me. However, I want to group the samplers that are in-between a GET and a DELETE sampler.
To illustrate, the structure of my test plan generate by JMeter is similar to this. However, there are thounsands of requests and their method is not written on their name.
- Test plan
-- Recording Controller
--- GET Sampler1
--- POST Sampler2
--- DELETE Sampler3
--- GET Sampler4
--- POST Sampler5
--- DELETE Sampler6
Is there a way automatically or semi-automatically arrange the test plan into this structure:
- Test plan
--Recording Controller
--- Group1
---- GET Sampler1
---- POST Sampler2
---- DELETE Sampler3
--- Group2
---- GET Sampler4
---- POST Sampler5
---- DELETE Sampler6
where every sampler are group between a GET and a DELETE Sampler?