<< < 12 13 14 15 16 17 18 19 20 > >>   Sort: Rank

Create Test Run Tables
How to create TestMan test run tables in MySQL server? You can create TestMan test run tables in MySQL server by following this tutorial. 1. Create the following SQL file, CreateTestRun.sql: -- CreateTestRun.sql use TestMan; create table Test_Run ( ID int not null auto_increment, Name varchar(80), S...
2017-12-21, 2642🔥, 0💬

MySQL Requirements for TestMan
What are MySQL requirements for implementing TestMan? If you want to implement TestMan data model in MySQL as described in previous chapters, you need to meet the following requirements. 1. MySQL server 5.6 or higher. 2. MySQL client command tool. 3. A database called "TestMan" on the MySQL server. ...
2017-12-21, 1528🔥, 0💬

Implementing TestMan in MySQL
Where to find tutorials on Implementing TestMan in MySQL? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Implementing TestMan in MySQL. MySQL Requirements for TestMan Create Test Case Tables Create Test Run Tables Create JMeter Test Result Tab...
2017-12-21, 1524🔥, 0💬

Archive JMeter Test Result Data
How to archive JMeter Test Result Data? I have converted all JMeter test result records to TestMan now. After you have converted data from the jmeter_test_result table to TestMan database, you need move converted data to an archive table as shown in this tutorial. 1. If this the first time, create a...
2017-12-13, 1641🔥, 0💬

Convert JMeter Test Result to TestMan
How to Convert JMeter Test Result to TestMan Data Model? In order migrate JMeter test result to TestMan, we need to decide how to convert JMeter test result data to TestMan tables and fields. One way to map JMeter test result to TestMan is described below: 1. For each unique value of Test_Run_Case_S...
2017-12-13, 1612🔥, 0💬

Update TestMan Test Run Tables
How to update TestMan Test_Run and Test_Run_Case tables with data from Test_Run_Case_Step table? "Duration", "Total", and "Failed" in Test_Run and Test_Run_Case tables can be calculated from Test_Run_Case_Step table as shown in the UpdateJMeterData.sql SQL script below: -- UpdateJMeterData.sql use T...
2017-12-13, 1507🔥, 0💬

Load JMeter Test Result Files to TestMan
How to load JMeter Test Result Files to TestMan? You can use the following command to load a JMeter test result file (.jtl) in CSV format to TestMan: &gt;\fyicenter\mysql\bin\m ysql-u fyicenter -D TestMan -e "load data local infile 'jmeter_test_result.csv' into table JMeter_Test_Result fields te...
2017-12-13, 1455🔥, 0💬

Alter JMeter Test Result Table Structure
How to load Alter JMeter Test Result Table Structure? I found that my test result file does not match the table anymore. You need to alter JMeter Test Result table if you see issues when loading the test result file. For example, the "trid" is too big to fit into the "int" data type in the database....
2017-12-13, 1431🔥, 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, 5098🔥, 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, 4066🔥, 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, 2378🔥, 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, 1568🔥, 0💬

Pass Windows Environment Variable to JMeter
How to Pass Windows Environment Variable to JMeter? I want to use Windows temporary folder environment variable in my test plan. JMeter can not access Windows environment variables directly. You can follow this tutorial to access Windows environment variable indirectly through JMeter system properti...
2017-12-04, 12820🔥, 0💬

Call JMeter Command in Windows Batch
How to call JMeter command in a Windows batch file? I want to create a single batch job to run JMeter command line multiple times. You can follow this tutorial to create a Windows batch file to run JMeter command line multiple time. 1. Create a batch file, facebook.bat, with these lines: echo off se...
2017-12-04, 8491🔥, 0💬

Override JMeter Variable from Command Line
How to Override a JMeter Variable from Command Line? I want to run the same test plan multiple times by changing the value of a variable I defined in the test plan. JMeter command line does not allow you to override any variables you defined in the test plan. But it allows you to override any JMeter...
2017-12-04, 7910🔥, 0💬

Substring of Windows Environment Variable
How to Get a Substring of a Windows Environment Variable? I need to pass a part of the variable value to JMeter. You can Get a Substring of a Windows Environment Variable by following this tutorial. If you want to a substring of a Windows Environment Variable value, use the following syntax: %varnam...
2017-12-04, 2215🔥, 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, 1826🔥, 0💬

JMeter Firefox Add-on by Richard Friedman
Selenium-IDE Plugin to record web traffic and create performance tests for JMeter. Our plugin captures Selenium test playback which can then be downloaded as a standard JMeter .jmx file. This can be uploaded back into JMeter or run via a cloud test. Visit site ...
2017-12-04, 1453🔥, 0💬

Use JMeter in Performance Testing with HTTP(S) Protocol from medium.com
How QA experts use Apache JMeter in daily work or web application performance testing with HTTP(S) protocols and csrf tokens? Today, web application testing needs complex and full approach which includes key and general steps: functional testing, GUI testing and load/performance testing (why testing...
2017-12-04, 1320🔥, 0💬

Custom Plugins for Apache JMeter at jmeter-plugins.org
This project is an independent set of plugins for Apache JMeter, the popular Open-Source load and performance testing tool. Visit the site ...
2017-12-04, 1078🔥, 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, 1553🔥, 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, 1778🔥, 0💬

Truncate Test Case and Test Run Tables
How to Truncate Test Case and Test Run Tables? I want to remove old data and start it over from empty tables. You can follow this tutorials to truncate Test Case and Test Run Tables. 1. Create a SQL script file, TruncateTestMan.sql: -- TruncateTestMan.sql use TestMan; truncate table Test_Run_Case_St...
2017-11-26, 2157🔥, 0💬

Latest Runs Summary Report
How to generate a report for Latest Test Run Cases Summary from TestMan database? You can follow this tutorials to generate a report for Latest Test Run Cases Summary from TestMan MySQL database: 1. Create a SQL script file, Report-Latest-Run-Cases-Summar y.sql:-- Report-Latest-Run-Cases-Summar y.sql...
2017-11-26, 1524🔥, 0💬

<< < 12 13 14 15 16 17 18 19 20 > >>   Sort: Rank