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

Run Recorded Session in JMeter
How to run the recorded Web session in JMeter? If you have a Web session recorded with the JMeter proxy server, you can follow this tutorial to run it in JMeter without any changes. 1. Run JMeter and open "Login-Logout-Session.jmx". You see the recorded session displayed in the test plan. 2. Click "...
2018-07-18, 2177🔥, 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, 1924🔥, 0💬

Variables and Functions in JMeter
Where to find tutorials on Using Variables and Functions in JMeter? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Using Variables and Functions in JMeter. What Are User Defined Variables Define Variable as Part of Test Plan Define Variable as...
2018-06-26, 2086🔥, 0💬

What Are User Defined Variables
What Are User Defined Variables in JMeter? User defined variables are variables defined in JMeter at different places. Values of user defined variables can be set or updated at different points during the execution process. There are several ways to define a User defined variable: 1. Variables defin...
2018-06-20, 2217🔥, 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, 1891🔥, 0💬

Define Variable as Part of Post-Processors
How to define a variable as part of an extractor post-processor? You can follow this tutorial to define a variable as part of an extractor post-processor. 1. Open Get-Exchange-Rate.jmx. 2. Add a post-processor, Regular Expression Extractor, after the "Latest Exchange Rate" HTTP request: Reference Na...
2018-05-27, 2083🔥, 0💬

Define Variable as Part of BeanShell
How to define a variable as part of a BeanShell script? You can follow this tutorial to define a variable as part of a BeanShell script. 1. Open Get-Exchange-Rate-2.jmx. 2. Add another variable in the Test Plan: Name: url Value: https://api.fixer.io/latest 3. Add a BeanShell PreProcessor before the ...
2018-05-23, 6019🔥, 0💬

HTTP POST with XML Message
How to use HTTP protocol to post an XML message to a server? You can follow this tutorial to post an XML message to a server with JMeter. 1. Create a Test Plan called Azure-Echo-API.jmx with the following HTTP Request in a Thread Group: Protocol: http Server Name: echoapi.cloudapp.net Method: POST P...
2018-03-18, 14509🔥, 0💬

Working With XML Body Messages
Where to find tutorials on Working With XML Body Messages in JMeter? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Working With XML Body Messages in JMeter. HTTP POST with XML Message XML Assertion - XML Validation XPath Assertion - XPath Exp...
2018-03-18, 3106🔥, 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, 1889🔥, 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, 1880🔥, 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, 1773🔥, 0💬

Accept Status Code 400 as Success
How to access Response Status Code 400 as Success? My sampler failed, because the server returns the 400 status code. You can follow this tutorial to access Response Status Code 400 as Success by adding/modifying the Response Assertion. If you are intentionally testing a REST API that returns an exp...
2018-02-01, 9693🔥, 0💬

Run JMeter Proxy Server
How to Run JMeter Proxy Server? I have the "HTTP(S) Test Script Recorder" component configured. If you have the "HTTP(S) Test Script Recorder" component configured, you can follow this tutorial to Run JMeter Proxy Server. 1. Run JMeter and open "Recording-Controller-HTTP-Pro xy.jmx".2. Open "HTTP(S)...
2018-02-01, 3616🔥, 0💬

Setup JMeter Proxy for Recording
How to setup JMeter to be a proxy server for HTTP communication recording? You can follow this tutorial to setup JMeter to be a proxy server for HTTP communication recording. 1. Run JMeter and click "File &gt; Template" menu or the template icon. You see the template screen. 2. Select the "Recor...
2018-02-01, 2026🔥, 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, 1857🔥, 0💬

System Properties in JMeter
What are system properties in JMeter? Built-in properties are properties exposed to the user interface by JMeter during the execution process. You can access system properties using the __property() or __P() function. System properties are divided into 3 groups: 1. Sampler properties - Properties us...
2018-01-27, 7428🔥, 0💬

Built-in Functions in JMeter
What are built-in functions in JMeter? Built-in functions are functions provided by JMeter that allows you access JMeter/JVM properties, manipulate data, and run scripts. Below is the syntax of calling a built-in function. ${__functionName(param1,param2 ,param3)}Note that if a parameter contains a "...
2018-01-27, 3923🔥, 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, 1647🔥, 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, 1547🔥, 0💬

Apache JMeter Tutorials
Where to find tutorials on Apache JMeter test tool? I want to know how to use Apache JMeter. Here is a large collection of tutorials to answer many frequently asked questions compiled by FYIcenter.com team about JMeter test tool: Getting Started with Apache JMeter What Is Apache JMeter? Download and...
2018-01-20, 10722🔥, 0💬

OpenID Connect - How to Load Test with JMeter from blazemeter
In this article we will describe how to load test one of the relatively new technologies - OpenID Connect, with Apache JMeterâ„¢. OpenID Connect is an add-on for OAuth 2.0, and it defines how OAuth 2.0 should authenticate users. We can explain it with the following expression: Authentication(OpenID...
2017-12-09, 5118🔥, 0💬

JMeter WebSocket Samplers - A Practical Guide from blazemeter
WebSocket is a protocol that provides a two-way communication channel between a web browser and a server over a single TCP connection. This protocol is becoming more and more popular each year and is supported by most of modern browsers. Unfortunately, Apache JMeter™ doesn’t support the WebSoc...
2017-12-09, 4075🔥, 0💬

JMeter Interview Questions & Answers from guru99.com
1) Explain what is JMeter? JMeter is a Java tool, which is used for performance Load Testing. 2) Explain how JMeter works? JMeter acts like a group of users sending requests to a target server. It collects response from target server and other statistics which show the performance of the application...
2017-12-09, 2388🔥, 0💬

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