<< < 6 7 8 9 10 11 12 13 14 15 16 > >>   ∑:469  Sort:Rank

JMeter Execution Order - PreProcessors
In what order PreProcessors are executed in JMeter? PreProcessors of all types are executed in the order described in the rules below: If a PreProcessor is attached to a Sampler, it is executed prior to the Sampler. If a PreProcessor is attached to a container (Test Plan, Thread Group, or Logical Co...
2018-08-14, ∼4609🔥, 0💬

JMeter Execution Order - Samplers
In what order samplers are executed in JMeter? Samplers of all types are executed in the order described in the rules below: Samplers in the same thread group are executed sequentially by traversing the group tree branch from top to bottom. Samplers in a logical controller may not be executed depend...
2018-08-14, ∼4523🔥, 0💬

JMeter Execution Order - General Rules
What are general rules on the execution order of different types of test elements in JMeter? Here are some general rules on the execution order of different types of test elements in JMeter: 1. The center line of test plan execution is based on Samplers. If a Sampler is not executed, all of its asso...
2018-08-14, ∼3392🔥, 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, ∼2539🔥, 0💬

Test Run Data Model Entity Relations
What are entity relations in the test run data model? Entity relations in the test run data model can be illustrated in the diagram below: Entity Relations of Test Run Data Object Model   ⇒ Implementing TestMan in MySQL ⇐ Test Run Case Step Assertion Data Object Type ⇑ Designing Test Run Data Model...
2018-07-22, ∼2475🔥, 0💬

Test Run Case Step Assertion Data Object Type
What is a simple data object type for test run case step Assertions to support a test run case step? A test run case step assertion records the result of a single test case step assertion performed during the execution of a test step. Here is a simple data object type for test case step assertions. ...
2018-07-22, ∼1982🔥, 0💬

Test Run Case Step Data Object Type
What is a simple data object type for test run case steps to support a test case? A test run case step is an execution instance of a test step. A test run case step should contain information about how the test step were executed, what were the actual inputs used, and what were the results of assert...
2018-07-22, ∼1978🔥, 0💬

Test Run Case Parameter Data Object Type
What is a simple data object type for test run case parameters to support a test case? A test run case parameter provides the value of a test case parameter actually used during the execution. Here is a simple data object type for test run case parameters. Test_Run_Case_Parameter data type, in TestM...
2018-07-22, ∼1830🔥, 0💬

Test Run Case Step Input Data Object Type
What is a simple data object type for test run case step inputs to support a test run case step? A test run case step input records what actual value was used for a single input during the execution of a test step. Here is a simple data object type for test run case step inputs. Test_Run_Case_Step_I...
2018-07-22, ∼1826🔥, 0💬

Pass Session ID to Subsequent HTTP Requests
How to Pass Session ID to Subsequent HTTP Requests query string parameters? If your Web application uses cookie to manage session ID, you should have no problem to run the test plan recorded by the JMeter proxy server. However, if your Web application uses query string parameter to manage session ID...
2018-07-18, ∼5728🔥, 0💬

Set Firefox for JMeter Proxy Server
How to set up Firefox to use the JMeter Proxy Server? If you have the JMeter proxy server running on your local computer and listening at port 8888, you can follow this tutorial to set up Firefox to use it to record all HTTP requests and responses. 1. Run Firefox and click "Options" in the menu. 2. ...
2018-07-18, ∼4352🔥, 0💬

Record Web Session with JMeter
How to record a Web session with the JMeter Proxy Server? If you have the JMeter proxy server running and your Firefox configured to use the proxy server, you can follow this tutorial to record a Web application session in JMeter. 1. Make sure your JMeter proxy server is running. 2. Make sure your F...
2018-07-18, ∼3156🔥, 0💬

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

Test MAC Address Generator
How to generate MAC addresses? To help you to obtain some MAC addresses for testing purpose, FYIcenter.com has designed this online tool. All you need to do is to enter the number of data items you need in the form below, and click the "Generate" button. The generated MAC addresses will be presented...
2018-07-13, ≈77🔥, 0💬

Random Fractional Number Generator
How to generate test fractional numbers? Test fractional numbers are numbers with fractions that are needed in testing math applications. To help you to obtain some fractional numbers for testing purpose, FYIcenter.com has designed this online tool. All you need to do is to enter the data range and ...
2018-06-27, ≈28🔥, 0💬

Random Integer Generator
How to generate integers? Test integers are whole numbers with no fractions that are needed in testing math applications. To help you to obtain some integers for testing purpose, FYIcenter.com has designed this online tool. All you need to do is to enter the data range and the number of data items y...
2018-06-27, ∼9021🔥, 0💬

Binary to Hex Encoder
How to convert binary data to hexadecimal format (or Binary to Hex Encoding)? Binary to Hex encoding is designed to convert any digital data into a sequence of hexadecimal digits. This is done by taking each byte in decimal format and converting it in hexadecimal format using. For example: Dec. Hex....
2018-06-27, ∼5777🔥, 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, ∼2607🔥, 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, ∼2859🔥, 0💬

Script.mts - UFT Test Script Code File
Where is the test script code stored? I have just saved my test in UFT. After saving your test in UFT, your script code will be stored in a file called "Script.mts" in the "Action1" sub-folder. \fyicenter\UFT\Tests\Case_1_Ad d_User\Action1\Script.mtsThe script code file "Script.mts" is actually a te...
2018-06-12, ∼6081🔥, 0💬

Create New Test in UFT
How to create a new test in UFT (Unified Functional Testing)? You can follow this tutorial to create a new test in UFT: 1. Start UFT (Unified Functional Testing). 2. Click "File &gt; New &gt; Test..." menu. You see the "New Test" dialog box. 3. Select "GUI Test" as the test type and enter th...
2018-06-12, ∼3522🔥, 0💬

Save UFT Test
How to save UFT test? I have just created a new test in UFT. You can follow this tutorial to save UTF tests. 1. Click "File &gt; Save" menu. All changes to the test is saved. 2. Open Windows Explorer and go to the test location. You see the following files: Name Size ---- ---- ├─── default.cfg ...
2018-06-12, ∼2686🔥, 0💬

UFT Test Result Files
Where are UFT test result files are located? I have just finished a test run. You can follow this tutorial to view locations of UFT test result files. 1. Open your test in UFT and run it. 2. Wait for the test to finish. 3. Open Windows Explorer and go to the Test location. For example, "\fyicenter\U...
2018-06-06, ∼3428🔥, 0💬

<< < 6 7 8 9 10 11 12 13 14 15 16 > >>   ∑:469  Sort:Rank