2 minutes readHere are details on how to save or export the results of your Apache JMeter test script to a CSV or XML file. Setup 1. Open Apache JMeter (here is how to start Apache JMeter on Mac) and right click Test Plan and Add -> Threads (Users) -> Thread Group 2. Right click Thread Group… Read more »
Posts Categorized: Apache JMeter
How to start Apache JMeter in non-graphical (non-GUI) mode?
2 minutes readIf you want to start Apache JMeter in non-GUI mode, use the following command line options: -n – non-GUI mode – this specifies JMeter is to run in non-GUI mode -t – JMX file – location of the test plan and the name of JMX file that contains the Test Plan -l – log file… Read more »
How to Use Apache JMeter’s XPath Extractor?
2 minutes readIn order to add an XPath Extractor to your JMeter script you need to begin by installing JMeter and create an HTTP Request. If you want to check how you can create a load test with Apache JMeter, please check our previous blog post. Start by adding a XPath Extractor to your HTTP Request by following the… Read more »
How to Add JMeter to the PATH Environment Variable On Mac OS X
< 1 minute readIn case you want to easily start Apache JMeter load testing tool on your MAC OS, here some things which you help you get started. Once you downloaded Apache JMeter, just go to the PATH where you’ve dowloaded it. For example, I’ve downloaded JMeter in my Downloads folder. Here are full details on how to run… Read more »
How To Use Apache JMeter To Load Test a Web Server
6 minutes readOverview We are going to present how to use Apache JMeter (open source load testing tool) in order to perform basic load and stress testing on your web application. We are going through each step and show how to use JMeter’s GUI (graphical user interface) in order to build a test plan, configure load tests,… Read more »
Run Apache JMeter on Mac
< 1 minute readInstall JMeter on Mac, to do so you have multiple options: 1. brew install jmeter 2. Download Apache JMeter from: http://jmeter.apache.org/download_jmeter.cgi: download the source code and build it yourself download the binaries In your Finder, uncompress apache-jmeter-xx.zip, and go to the directory called ‘bin‘.– Open ApacheJMeter.jar– from Terminal, use the following command: With JMeter Cloud… Read more »
What is HTTP POST Request?
< 1 minute readHTTP POST request is used for sending data to a server. You can use POST requests for upload a file or submitting a web form, make sure that the receiving application agrees on the format. Additional headers are sent with the POST request: Content-Type: header which is usually application/x-www-form-urlencoded and the Content-Length: header gives the… Read more »