Posts

Showing posts from May, 2023

Simulate Performance Test Scenario with JMeter

This page talks about how to create Test script for load testing, Endurance(soak) testing, spike testing and stress testing using JMeter tool.   Steps to create Script for web application - 1. Choose web test plan template from JMeter test plan section. 2. Use below configuration to simulate login, actions and logout transactions which is a typical use case of web test plan.           Follow the below steps sequentially. Add Simple controller under thread group, add login requests inside it. Add Runtime controller and actions which you want to run for specified time. Add simple controller, keep logout requests inside it.   3. Make sure to complete other performance test script best practices like correlation, parameterization, and naming convention.  3. Save the script and you are good to go. This script will do single login and runs the actions request for specified amount of time, after that logout step executed.   4. For Load testing...