1- I am using the jmeter gui to build a simple test plan with variable source IPs (spoofing IP source).
The test works fine from gui mode with the following config:
(secondary IPs are configured accordingly)
2- Now I would like to do the same from the non-gui mode.
I "saved as" the test plan from the gui into HTTP-Request.jmx file (as instructed here)
I have noticed that the jmx file contains the source IP variable created in the gui but no mention of the CSV file from which to read the values. I have tried the follwing commands:
jmeter -n -t HTTP-Request.jmx -j testplan_01.log
Creating summariser
Created the tree successfully using
HTTP-Request.jmx Error in NonGUIDriver java.lang.RuntimeException:
Could not find the TestPlan class!
Tested the option -p which seem to indicate parameter file.
jmeter -n -t HTTP-Request.jmx -p source-ip.txt -j testplan_01.log
Creating summariser
Created the tree successfully using
HTTP-Request.jmx Error in NonGUIDriver java.lang.RuntimeException:
Could not find the TestPlan class!
What am I doing wrong?