You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I have a usecase to override existing load configuration of ThreadGroup from jmx file
I get the jmx test plan by doing below DslTestPlan testPlan = DslTestPlan.fromJmx(jmxPath);
How can I fetch the existing thread groups from this test plan ? I see the testplan olnly has .children() method where I can only add new thread group.
The text was updated successfully, but these errors were encountered:
ihsaddamhussain
changed the title
How to fetch and update existing threadgroup from testplan ?
Anyway to fetch and update existing threadgroup from testplan (fromJmx) ?
Jan 27, 2025
JMeter DSL API is focused on test plan creation and execution, but not in modifying an existing test plan.
I think the best thing would be for your JMX test plan to have parameterized properties so you can later on change them if you need, for example using JMeter Properties. If you have that setting JMeter properties in JMeter DSL execution is very simple.
Have you considered migrating your JMX test plans to JMeter DSL code with jmsdl jmx2dsl command?
Hi, I have a usecase to override existing load configuration of ThreadGroup from jmx file
I get the jmx test plan by doing below
DslTestPlan testPlan = DslTestPlan.fromJmx(jmxPath);
How can I fetch the existing thread groups from this test plan ? I see the testplan olnly has .children() method where I can only add new thread group.
The text was updated successfully, but these errors were encountered: