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>
308 questions
3
votes
3 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…
3
votes
1 answer

Java class fields, object use in Beanshell

I am using Java with JSF and Beanshell script. I want to use fields and object of java class in beanshell. I have tried my best to get help from google but couldn't find any helpful information. For example import java.util.ArrayList; import…
Karim Narsindani
  • 434
  • 3
  • 14
  • 38
3
votes
1 answer

Jmeter: how to modify properties on the fly while distributed test is running?

WHAT I HAVE: Huge Jmeter agents network, 1 master + many slaves. Master sends tasks to Slaves, they start test execution and report data to Master. WHAT I WANT: Be able to modify inputs (passed as global properties to Master, -G) on the fly, while…
3
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.
  • 33
  • 1
  • 3
3
votes
3 answers

No SOAP/XML-RPC Sampler exists in JMeter 3.2

I was a bit surprised that my JMeter 3.1 scripts didn't work in 3.2. What is the reason of removing SOAP/XML-RPC Sampler in JMeter 3.2? Is there some performance issue etc?
Anna Sz
  • 33
  • 2
  • 4
2
votes
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
  • 337
  • 4
  • 15
2
votes
1 answer

Jmeter oracle connection issue

While connecting to oracle database from jmeter, i was receiving a connection error. Cannot create PoolableConnectionFactory (ORA-00604: error occurred at recursive SQL level 1 ORA-01882: timezone region not found ) And now I want to set the…
bbb
  • 149
  • 2
  • 18
2
votes
2 answers

How to close JDBC Connection in jmeter

I'm using JDBC connection configuration and JDBC request sampler to fetch test data from database for large set of data for my test requirement. My question is, if we connecting to database through connection configuration and JDBC sampler to fetch…
2
votes
2 answers

Set the whole request url in jmeter

I have a request, which gives upload url as response body. { "uploadUrl": "https://test.com:9000/sample_uploadurl" } I'm able to extract the uploadUrl using JSON extractor. I want to use above upload url to in next http request. How to set the…
ajayramesh
  • 3,576
  • 8
  • 50
  • 75
2
votes
1 answer

How to authorise (with OAuth 2.0) in JMeter having sharepoint online app?

I have recorded scripts for all test cases, and run all test cases due to the OAuth 2.0 it is failing all of the test cases. Now I have to authenticate OAuth 2.0 in JMeter, I have following information: client_id, response_mode, protectedtokena,…
2
votes
4 answers

Passing values to JMeter script at run time through bat file

I need to pass thread group, ramp up time and loop count to a JMeter script at run-time after getting the inputs from the user. For this I have created a bat file like below: @echo off title Accepting User Inputs And Passing It To JMeter Scripts…
Satyajit
  • 152
  • 10
2
votes
3 answers

How to change HTTP Request Path for multiple HTTP Requests at once in Jmeter

I have created JMeter HTTP request sampler project using Blazemeter recorder which created Jmx.file I have opened the same in JMeter to modify and fix the errors. I have more than 100 HTTP requests with Name as…
Rohit A
  • 23
  • 4
2
votes
1 answer

how to filter jmeter dashboard that generated using maven project

I am generating a dashboard using jmeter, and I want to restrict warmup requests like (sampler names) setPost, setGet, setPut, and setDelete from showing up in the dashboard. But, these have to be run before running other requests. I tried to…
2
votes
2 answers

JMeter - Unsupported major.minor version 51.0

I open JMeter and I see the following error in the logs: jmeter.gui.util.MenuFactory: Could not instantiate com.atlantbh.jmeter.plugins.xmlformatter.gui.XMLFormatPostProcessorGui java.lang.UnsupportedClassVersionError: …
2
votes
1 answer

Unable to connect to Websocket through JMeter plugins

My Requirement: I have to connect to the Websocket through JMeter Once it is connected, I have to send some API requests having JSON data as body to the server and I have to verify the JSON response of it Worked Items: I have tried using Maciej…
1
2
3
20 21