Reputation: 375
Please let me know whether it is possible to run jmeter script from eclipse? If yes Please let me know the process.
Upvotes: 5
Views: 20427
Reputation: 4034
Use Eclipse External Tool
C:\Program Files\apache\jmeter\bin\jmeter.bat
) (on Linux like /opt/apache/jmeter/bin/jmeter
)jmeter-project
is shown)Info The icon Stop, does not work, as this actually launches a script, which launches the Java application JMeter.
Optionally add parameters
-t src\test\jmeter\sample.jmx
(the path of the JMeter script to launch)-q src\test\jmeter\environment.properties
(some external properties file, use ${__P(key-name)}
)See JMeter options and Parameterising Tests for the details.
Upvotes: 11