Questions tagged [jmeter-maven-plugin]

JMeter Maven plugin to automate Apache JMeter tests in Maven.

enter image description here

The JMeter Maven Plugin allows you to integrate Apache JMeter tests as part of your Maven build lifecycle. This makes your tests more portable and easier to run in multiple environments as the only real dependency is a valid Maven install.

242 questions
1
vote
1 answer

A required class was missing while executing com.lazerycode.jmeter:jmeter-maven-plugin:2.9.0:configure: net/minidev/asm/FieldFilter

I'm using jmeter-maven-plugin 2.9.0 with maven 3.6.0, when I run the mvn verify I get the following error: Failed to execute goal com.lazerycode.jmeter:jmeter-maven-plugin:2.9.0:configure (configure) on project performance-tests: Execution…
1
vote
1 answer

jMeter ignoring Thread groups

I am using jMeter to do some performance testing. All thread groups are almost identical - differs only in name and in http request inside (see structure below). Although all are defined the same, the run seems to ignore some of those. Only two out…
Anonym
  • 45
  • 6
1
vote
1 answer

CannotResolveClassException: com.blazemeter.jmeter.RandomCSVDataSetConfig

I am building a maven project to execute performance testing for multiple web services, and this is following to jmeter-maven-plugin. However I ran into an issue which is basically that maven can not find the RandomCSVDataSetConfig class. in which I…
Awad
  • 823
  • 3
  • 11
  • 33
1
vote
1 answer

how to run a specific jmx file using jmeter maven plugin

I am using Jmeter Maven plugin( http://jmeter.lazerycode.com) to trigger jmx files in my maven project. Is there a way where I can specify which jmx file to run during run time instead of the plugin configuration testFilesDirectory,…
shebeok
  • 21
  • 1
  • 3
1
vote
1 answer

Gitlab ci- report jmeter test failures

We have Gitlab job for our Jmeter+Maven integration project. Which will execute .jmx file and generate jmeter dashboard report and send a mail. Following is my yml file stages: - test test_ba_bpmm_qaa-jb: stage: test tags: -…
Saagar
  • 794
  • 3
  • 20
  • 41
1
vote
1 answer

How to analyze jmeter dashboard report,any open source tool or framework available which helps in analyzing JMeter Dashboard reports after test run?

I found some solution which helps to analyze a single graph. Free Open source solutions to analyze a single graph... JMeter Plugins - look onto custom graphs in this package; JMeter Result Analysis Plugin JWeter tool for logs analyzing &…
Arimon
  • 11
  • 5
1
vote
2 answers

Jmeter maven plugin : To specify thread count, loop, ramp up time in Maven

In the pom.xml file, I set the following variables and running the JMeter script from maven using the following command. But it doesn't work. This means the thread is not running with 10 users. Can you please help me with this? Also, in JMeter do I…
Vishal Pachpute
  • 159
  • 1
  • 2
  • 13
1
vote
1 answer

how to save jmeter aggregate graph as a png in a folder in maven target folder

I'm using the jmeter-maven-plugin to run my load tests. However, i want to be able to save the aggregate graph as a png. I saw that there is a JmeterPlugindCMD command line tool that could do that. But is there any maven plugin that could help with…
Harinya
  • 181
  • 1
  • 4
  • 18
1
vote
1 answer

groovy.lang.MissingMethodException: No signature of method: static com.mongodb.MongoCredential.createScramSha1Credential()

I am trying to connect to mongodb using JSR 223 sampler with groovy. THe signature looks completely fine and The script works fine in JMETER. But it throws error while executing it through maven. Below is the code:…
1
vote
2 answers

Error in NonGUIDriver java.lang.IllegalArgumentException

I am trying to run a jmeter script using 'mvn verify' and getting below error. I am new to Jmeter and tried out solutions from previous post but in vain. How to resolve this? [INFO] Error in NonGUIDriver java.lang.IllegalArgumentException: Problem…
Madhuri
  • 19
  • 1
  • 1
  • 4
1
vote
1 answer

Jmeter FileToString Issue - Could not read open filename.txt

I am trying to set up a maven project to run my existing script. I am passing a data file name(data.txt) from a csv setup using column data_file_name in input.csv file. In a HTTP POST, i am using below code to POST…
garima
  • 111
  • 1
  • 15
1
vote
0 answers

How to customize Statistics table view on Jmeter report dashboard

I'm using jmeter 3.2 version and i'm running jmx file using jmeter-maven-pulgin(v2.4.0) run and generate html report. But the report needs to be customized as per the below requirement 1) Statistics table should display the result according to…
Praveen PS
  • 127
  • 2
  • 5
  • 17
1
vote
1 answer

Error in NonGUIDriver java.lang.NullPointerException Maven Eclipse

I am getting and error while running jmeter testscript via mvn . Here is my pom.xml com.lazerycode.jmeter jmeter-maven-plugin
Cod
  • 179
  • 1
  • 12
1
vote
3 answers

JMeter From Java Code - How to add ConstantThroughputTimer to my Test

I have a Class which demonstrate a JMeter test from Java code. The Object of the test is to set N requests per second. I want to add a ConstantThroughputTimer to my test in order to set the max RPS(requests per second) JMeter is making. Created one…
razrog
  • 41
  • 6
1
vote
1 answer

Jmeter CSV data set config run script correct even after providing incorrect username and password

I want to run performance testing using 100 users by using JMeter CSV data set config, I have added 100 different users in CSV file which are incorrect. when i run the script in run properly, i was expecting it should show me the error than username…