Questions tagged [jmeter-3.2]

Use this tag for questions specific to Apache Jmeter 3.2, released on 14 April 2017. Always specify the jmeter tag as this tag should end up being an alias for 3.2 version.

This release brings a lot of new features and fixes bugs.

Notice JMeter 3.2 requires Java 8 or later to run.

You can read the New and Noteworthy section with some screenshots to illustrate improvements and full list of changes

JMeter artifacts can be downloaded on Maven Central :

 <groupId>org.apache.jmeter</groupId>
 <artifactId>ApacheJMeter</artifactId>
 <version>3.2</version>
276 questions
2
votes
2 answers

Jmeter Groovy Assert Keyword is not Causing Assertion Failure in Tree View Listener

Is it possible to get assertion failed in tree view listener using this line of code in JSR223 Assertion? assert 1 == 2 Before in JMeter version 3.1 i could do this without any problem and now its just not working. I know i can use these lines of…
kako lako
  • 33
  • 2
2
votes
1 answer

Jmeter is skipping http request under thread Group but some time its sending http request

I created one project in JMeter and added one thread group This thread group is having 2-3 HTTP request files While sending load test, it's executing 1st HTTP request but other HTTP is not sending.
Ranjan
  • 61
  • 5
2
votes
1 answer

How to resolve updating GUI error in JMeter

I am facing 'problem updating GUI' error in JMeter. I am using web driver sample and when i inserted java script code. this error occurred. JMeter version - 3.3 I have tried with Lower versions as well like: 2.11, 3.0, 3.2 etc. but did not find the…
2
votes
1 answer

Jmeter Property with array of values

Requirement: Need to store 50+ values to a Jmeter property and use with idx In the case of normal variable we can use Country_1 or Country_2. Do we have any function to set an array of values to jmeter Property and how to get value using…
2
votes
1 answer

JEMETER Non-GUI : missing class com.thoughtworks.xstream.converters.ConversionException error

I am creating a JMeter test plan from scratch. Here is my code: public static void main(String[] args) throws Exception { StandardJMeterEngine jmeterEngine = new StandardJMeterEngine(); …
user8943456
  • 23
  • 1
  • 4
2
votes
2 answers

Unable to create(Mismatch between expected number of columns) Dashboard report in Jmeter...!

I have issues while generating dashboard report in Jmeter (through command line) 1)Coped reportgenerator Properties to User Properties file 2)Restarted Jmeter to pick up the data 3)Added below to user properties…
Prathap Reddy
  • 23
  • 1
  • 4
2
votes
3 answers

Invoking Transaction controller or HTTP sampler from Bean shell/JSR223

Problem statement. Set of transactions(1000+) and need to call or reuse(without duplicating in different if/switch controllers) by invoking from the Beanshell or JSR233. In SoapUI we have groovy script option to break sequential execution and divert…
Load Stitch
  • 157
  • 1
  • 9
2
votes
2 answers

How to delay my each thread group in JMeter (without using startup delay)

Here I have 4 Thread Groups present in my Test Plan and I have a requirement, need to run test plan in the time interval of 30 minutes between each of my Thread Group (2nd thread group should start only after 30 minutes, after the completion of 1st…
2
votes
3 answers

NO graph results with jmeter

I have installed jmeter based on tutorial in guru99.com and now following exactly the steps from https://www.guru99.com/jmeter-performance-testing.html page but get no graph results . I open jmeter in gui mode cause in the command line mode I get…
Ioanna M.
  • 23
  • 3
2
votes
1 answer

How to send Included Components in JMeter in remote (distributed) mode

I've got JMeter script which contains Include Controllers and I want to run my test in distributed mode. But I'm facing problem that JMeter slaves (remote nodes) can't find those elements which I want to include. INFO o.a.j.c.IncludeController:…
Michal
  • 2,966
  • 1
  • 23
  • 41
2
votes
2 answers

SMTP Sampler executes receives IOExeception while sending message

I'm using jmeter 3.2, I want run a SMTP Sampler in Jmeter where I have done the necessary configuration by adding the javamail file in the lib folder of Jmeter and adding necessary credentials in the mail setting, though when executed I am getting…
2
votes
1 answer

Jmeter 3.2- Error in NonGUIDriver org.apache.jorphan.util.JMeterStopTestException

I have a JMeter test suite, which is working fine till apache-jmeter-2.13. When upgrade to JMeter 3.2 and I get below exceptions in non GUI mode. I didn't do any change in the JMeterscript, why this error is throwing in JMeter versions later 2.13…
1
vote
2 answers

How to add Assertion in JSR223 using java

How to add assertion on response message in jsr223 postprocessor using java code. I tried using AssertionResult.setFailure(true); but it is not working
Sadha Nanda
  • 305
  • 2
  • 11
1
vote
1 answer

if controller not working when I use ${status} == true

I am having a hard time having jemeter working with my if condition As you see the above I am checking is status variable which I created in earlier car is true and it is true so I expect this if gets executed but it does not. However as soon as I…
Learner
  • 877
  • 2
  • 8
  • 21
1
vote
2 answers

Is it possible to extract a UUID from a response in Jmeter so I can use for a subsequent request

My Scenario: I am doing a POSt request that generates a rateID( UUID) Doing another POST request that uses this rateID I am also using 2 other fields in the body that is getting extracted by JSON Extractor but somehow this rateID is just getting…
1 2
3
18 19