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

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, ∼2679🔥, 0💬

HTTP Request to Get Home Page
How to use the HTTP Request Sampler to get the home page from a Website? This tutorial shows you how to use the use the HTTP Request Sampler to get the home page from www.facebook.com. 1. Start JMeter on your computer. 2. Change the default Test Plan name to "Facebook Login Test Plan". 3. Add a chil...
2017-11-18, ∼2676🔥, 0💬

Run My First JMeter Test
How to Run my First Test with JMeter? If you have created your first test in JMeter as described in the previous tutorial, you run it using these steps. 1. Start JMeter on your computer. 2. Click "File &gt; Open" menu to open your first JMeter test stored in "\fyicenter\First-Test.jmx". You see ...
2017-11-18, ∼2645🔥, 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, ∼2621🔥, 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, ∼2595🔥, 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, ∼2556🔥, 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, ∼2551🔥, 0💬

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, ∼2544🔥, 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, ∼2539🔥, 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, ∼2525🔥, 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, ∼2492🔥, 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, ∼2485🔥, 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, ∼2480🔥, 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, ∼2448🔥, 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, ∼2437🔥, 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, ∼2422🔥, 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, ∼2419🔥, 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, ∼2399🔥, 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, ∼2397🔥, 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, ∼2342🔥, 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, ∼2273🔥, 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, ∼2260🔥, 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, ∼2182🔥, 0💬

What Are Test Elements in JMeter
What Are Test Elements in a JMeter Test Plan? A test element in JMeter represents an object that will perform some action when the test plan is executed. For example, a "HTTP Request" is a test element that will send a HTTP request to a remote server and retrieve the response returned from the serve...
2018-01-27, ∼2172🔥, 0💬

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