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

Date and Time Duration Calculator
How to calculate the duration between two date/time instances? Calculating the duration between two date/time instances is not easy, because the number of days in each month is not a constant. The number of days in a year is also different for leap years. FYIcenter.com has designed this online tool ...
2018-01-08, ∼4149🔥, 0💬

Date and Time Addition Calculator
How to add increments to date and time? Adding increments to a date and time is not easy, because the number of days in each month is not a constant. The number of days in a year is also different for leap years. FYIcenter.com has designed this online tool for you to add increments to a given date a...
2018-01-08, ∼2617🔥, 0💬

Data Encoders, Decoders and Converters
Where to find data Encoders, Decoders and Converters? FYIcenter.com has prepared a number of data Encoders, Decoders and Converters for you: Binary to Hex Encoder Hex to Binary Decoder Base64 Encoder Base64 Decoder UUEncode (Unix-to-Unix Encode) UUDecode (Unix-to-Unix Decode) URL String Encoder URL ...
2018-01-07, ∼4851🔥, 0💬

Random Text String Generator
How to generate string test values? To help you to obtain large number of string test values, FYIcenter.com has designed this online tool. All you need to do is to enter string options and the number of values you need in the form below, and click the "Generate" button. The generated data will be pr...
2018-01-06, ∼9527🔥, 0💬

Data Validators
Where to find data validators? FYIcenter.com has prepared a number of data validators for you: Credit Card Number Validator Mod 10 (Luhn Algorithm) Checksum Validator Email Address Validator Domain Name Validator IP Address Validator IPv6 Address Validator Expand IPv6 Address Compress IPv6 Address C...
2018-01-06, ∼6341🔥, 0💬

Data Lookup Tools
Where to find Data Lookup Tools? FYIcenter.com has prepared a number of Data Lookup Tools for you: Show My IP Address and Host Name Show My Browser Identification Information Show My Browser Request Headers Local Time of World Largest Cities Exchange Rates of World Currencies   ⇒ Show My IP Address ...
2017-12-25, ∼4481🔥, 0💬

Create Test Case Tables
How to create TestMan test case tables in MySQL server? You can create TestMan test case tables in MySQL server by following this tutorial. 1. Create the following SQL file, CreateTestCase.sql: -- CreateTestCase.sql use TestMan; create table Test_Case ( ID bigint, Name varchar(80), Status varchar(16...
2017-12-21, ∼3348🔥, 0💬

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

Create JMeter Test Result Table
How to create a table in TestMan to load JMeter Test Result? In order to convert JMeter Test Result into TestMan Test Run data model, you need to create a table in TestMan so JMeter can send test result directly to the database. Or you can load it manually. Here is the SQL script CreateJMeterTable.s...
2017-12-21, ∼3201🔥, 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, ∼2231🔥, 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, ∼2068🔥, 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, ∼2187🔥, 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, ∼2110🔥, 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, ∼1979🔥, 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, ∼1887🔥, 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, ∼1858🔥, 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, ∼5898🔥, 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, ∼4957🔥, 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, ∼3111🔥, 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, ∼1983🔥, 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, ≈14🔥, 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, ∼9743🔥, 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, ∼9492🔥, 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, ∼2817🔥, 0💬

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