<< < 1 2 3 4 5 >   Sort: Date

Revise Recorded Session in JMeter
How to review and revise the recorded Web session in JMeter? When a Web session is recorded by the JMeter proxy server, JMeter will use default names and structure to the test plan for you. You should review and revise the test plan as shown below. 1. Run JMeter and open "Login-Logout-Session.jmx". ...
2018-07-18, 1923🔥, 0💬

View Result in Table for Entire Test Plan
How to use the View Result in Table listener list result from all samplers in a table format? You can follow this tutorial to learn how to use the View Result in Table listener. 1. Open "\fyicenter\Facebook-Login-Tes t-6.jmx".2. Right-click on the "Facebook Login Test Plan", and select "Add &gt;...
2017-11-18, 1912🔥, 0💬

Test Plan Element Tree in JMeter
What is the Test Plan Element Tree in JMeter? A test plan element tree in JMeter is a tree diagram of test elements that represents the test plan structure. Rules to remember when building a test plan tree in JMeter: Test Plan is the top level tree node. Thread Groups are second level tree nodes. Co...
2018-08-06, 1896🔥, 0💬

Define Variable as Part of Test Plan
How to define a variable as part of my JMeter Test Plan? You can follow this tutorial to define a variable as part of your Test Plan. 1. Run JMeter and create a test plan called Get-Exchange-Rate.jmx. 2. Click to open the test plan properties panel. 3. Click "Add" to define a new variable: Name: hos...
2018-06-05, 1890🔥, 0💬

What Is JMeter Thread Group
What Is JMeter Thread Group? A JMeter Thread Group represents a load test case which runs a sequence of test steps in multiple threads (also called users) repeatedly. A JMeter Test Plan has the following main attributes: Name - Name for this Thread Group. Comments - Comments about this Thread Group....
2017-11-18, 1886🔥, 0💬

Using BeanShell Script in JMeter
Where to find tutorials on Using BeanShell Script in JMeter? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Using BeanShell Script in JMeter. What Are BeanShell Scripts BeanShell Script Interface with JMeter   ⇒ What Are BeanShell Scripts ⇐ G...
2018-03-18, 1885🔥, 0💬

BeanShell Script Interface with JMeter
What objects are used as the interface between BeanShell scripts and JMeter? BeanShell Script Interface with JMeter uses the following objects: 1. vars - An org.apache.jmeter.threads.JMet erVariablesobject that allows you to access user defined variables in JMeter with get() and put() methods. 2. ct...
2018-03-18, 1877🔥, 0💬

Recording with JMeter HTTP Proxy
Where to find tutorials on Recording with JMeter HTTP Proxy? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Recording with JMeter HTTP Proxy. Setup JMeter Proxy for Recording Run JMeter Proxy Server Set Firefox for JMeter Proxy Server Record W...
2018-02-01, 1856🔥, 0💬

Windows Command to Aggregate Files
What is the Windows command to aggregate multiple files into a single file? I want to combine test result files from multiple JMeter test projects into a single one. If files contains text data, you can aggregate them using the "type ... &gt;&gt; ..." command as shown below: type jmeter*.jtl...
2017-12-04, 1834🔥, 0💬

Run My First JMeter Load Test
How to Run my First Load Test with JMeter? You can follow this tutorial to run your first JMeter load test. 1. Start JMeter on your computer and open "\fyicenter\First-Load-Test.jm x".2. Right-click on the "Facebook Login Test Plan", and select "Add &gt; Listener &gt; View Result in Table". ...
2017-11-18, 1821🔥, 0💬

JMeter Execution Order - Listeners
In what order Listeners are executed in JMeter? Listeners of all types are executed in the order described in the rules below: If a Listener is attached to a Sampler, it is executed after all Assertions of the Sampler. If a Listener is attached to a container (Test Plan, Thread Group, or Logical Con...
2018-10-13, 1820🔥, 0💬

What Is JMeter Test Plan
What Is JMeter Test Plan? A JMeter Test Plan is a container that hold a group of related test cases. A JMeter Test Plan is the highest data entity that you can manage and run in a single JMeter session. A JMeter Test Plan has the following main attributes: Name - Name for this Test Plan. Comments - ...
2017-11-18, 1792🔥, 0💬

Run Apache JMeter load tests with VSTS from Microsoft
To run a JMeter load test: 1. Sign in to your VSTS account (https://your-account-name.vis ualstudio.com).2. Go to the Load Test hub, open the + New menu and choose Apache JMeter test. Full article ...
2017-11-26, 1783🔥, 0💬

Create My First JMeter Load Test
How to Create my First Load Test with JMeter? I have just installed JMeter on my computer. You can follow this tutorial to create your first JMeter load test. 1. Start JMeter on your computer. 2. Right-click on "Test Plan" in left panel and select "Add &gt; Threads (Users) &gt; Thread Group"...
2017-11-18, 1778🔥, 0💬

What Are BeanShell Scripts
What Are BeanShell Scripts? BeanShell scripts are code segments written in the BeanShell Scripting Language defined in JSR-274. BeanShell scripts follows Java syntax is considered as lightweight Java scripts. Below is a BeanShell script example used in JMeter: import java.net.URL; URL url = new URL(...
2018-03-18, 1772🔥, 0💬

Assertion on Home Page Response Time
How to verify if I the home page responds less than half a second? You can add Duration Assertions to the HTTP request to very if the home page HTTP responds faster enough or not as shown in this tutorial. 1. Start JMeter on your computer and open "\fyicenter\Facebook-Login-Tes t-2.jmx".2. Right-cli...
2017-11-18, 1758🔥, 0💬

Generate Test Summary Report from MySQL
How to generate test summary report from the test result table in MySQL? You can follow this tutorial to generate test summary report from the test result table in MySQL. 1. Run "\fyicenter\First-Load-Test-6. jmxmultiple files. 2. Run MySQL client tool with the following query: select testID, runID,...
2017-10-04, 1744🔥, 0💬

Modify MySQL Table to Store New Field
How to Modify the MySQL Table to Store New Fields? I have just added "testID" to the test result file. You can follow this tutorial to modify the MySQL table to store the new field. 1. Run MySQL client tool and with this command: mysql&gt; alter table jmeter_test_result add column testID INT; 2....
2017-10-16, 1724🔥, 0💬

What Is JMeter HTTP Request
What Is JMeter HTTP Request? A JMeter HTTP Request is a kind of test step (also called Sampler) that sends a HTTP request to a remote server. A JMeter HTTP Request has the following main attributes: Name - Name for this Thread Group. Comments - Comments about this Thread Group. Protocol - The protoc...
2017-11-18, 1671🔥, 0💬

Add Execution Identification to Test Result
How to add an execution identification to the test result? I want to separate test results between today's execution from last month execution. You can follow this tutorial to add an custom field to record an execution ID in the test result. 1. Run JMeter and open "\fyicenter\First-Load-Test-6. jmx"....
2017-09-28, 1669🔥, 0💬

Types of Test Elements Supported in JMeter
What are different types of test elements supported in JMeter? Currently, JMeter supports the following types of test elements: 1. Test Plan - Test plans are the top level container elements in JMeter. A test plan can hold "Thread Group" elements and other non-Sampler elements. 2. Thread Group - Thr...
2018-01-27, 1646🔥, 0💬

What Is Load Testing
What is load testing? Load testing, also called stress testing or performance testing, is to measure response time of a system under certain usage load. There are several key considerations on performing load testing: Size of the Load - This is to consider the number of users who are using the syste...
2017-11-18, 1612🔥, 0💬

jMeter Tutorial - A Practical Guide from tutorialspoint
jMeter is an Open Source testing software. It is 100% pure Java application for load and performance testing. jMeter is designed to cover categories of tests like load, functional, performance, regression, etc., and it requires JDK 5 or higher. This tutorial will give you great understanding on jMet...
2017-12-09, 1571🔥, 0💬

Apache JMeter FAQ
Are you a Software QA engineer or Software tester? Need to update your software QA/testing knowledge or need to prepare for a job interview? Check out this collection of Apache JMeter FAQ... Full article ...
2017-11-26, 1554🔥, 0💬

<< < 1 2 3 4 5 >   Sort: Date