Support has been added for JVM arguments when creating JMeter tests. One use case might be to increase allocated memory on an instance type for performance tuning of the agent. Please refer to java specific documentations for JVM Arguments. https://docs.oracle.com/javase/8/docs/technotes/tools/windows/java.html The setting of JVM args can impact proper test execution and impact ability to stop AWS instances. Use with caution.      Read More →

Here is an example of a JMeter + WebDriver test written in JavaScript.  JMeter uses the Java WebDriver. This is a bridge between Javascript and you are scripting java – http://jmeter.apache.org/usermanual/functions.html#__javaScript In JMeter the driver is passed into the test. WDS object passed in Specifically we are provided an object called WDS with the following properties.  (from the docs).   Take special notice of WDS.browser as this is the WebDriver we use to drive our test. WDS.nameRead More →

Here is an example of a JMeter + WebDriver test written in Java.  Comments in-line. In JMeter the driver is passed into the test. WDS object passed in Specifically we are provided an object called WDS with the following properties.  (from the docs).   Take special notice of WDS.browser as this is the WebDriver we use to drive our test. WDS.name – is the value provided in the Name field (above). WDS.parameters – is the value providedRead More →