Skip to content

Tag: jmeter

Programmatically get/set JMeter variable when extending JMeter

I am building a custom config element by extending JMeter SDK. I have achieved most of my desired functionality. Last piece is to set a computed value to a JMeter variable so that it can be used in HTTP Samplers. I looked at existing components implementation – Test Plan and User Defined Variables, but …

How do I escape commas with Jmeter reading from a CSV data set?

I am testing a chat bot with inputs, and one of the rows reads, for example The input is sending only “Just in case”. I have tried Just in case, where is the nearest doctor’s office Answer Did you read the CSV specification (RFC 4180) or the Wikipedia page? It says exactly that you don&#8217…

Creating a New JMeter Test Purely in Java for Java Sampler

I’ve created a JMeter Java request and copied the jar to ext directory (apache-jmeter-3.1libext). I’m trying to run the test on a remote machine. From the GUI I’m able to configure and run the Java request. Also able to invoke the test via Java code using the JMX file as below. Now I want to…