<< < 9 10 11 12 13 14 15 16 17 18 19 > >>   Sort: Rank

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💬

Parameter Types of REST API in SoapUI
What types of REST API parameters are supported in SoapUI? SoapUI REST projects support the following types of REST API parameters: 1. Query Parameter - Query parameters are parameters encoded in the query string of the final requesting URL. For example, "http://api.example.com/orders /1001?format=xm...
2018-03-13, 2687🔥, 0💬

Run REST API Request with Template Parameter
How to Run a REST API Request with Template Parameters? When running a REST API request, you need to provide a actual values to each template parameter as shown in this tutorial. 1. Start SoapUI on your computer. 2. Click "File &gt; Import" menu to open your SoapUI test project stored in "\fyice...
2018-03-13, 2536🔥, 0💬

Run REST API Request with Query Parameter
How to Run a REST API Request with Query Parameters? When running a REST API request, you need to provide a actual values to each query parameter as shown in this tutorial. 1. Start SoapUI on your computer. 2. Click "File &gt; Import" menu to open your SoapUI test project stored in "\fyicenter\R...
2018-03-13, 1965🔥, 0💬

Performing Load Tests with SoapUI
Where to find tutorials on Performing Load Tests with SoapUI? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Performing Load Tests with SoapUI Build Test Steps for Load Test with SoapUI Create Load Test with SoapUI Load Test Parameters in Soap...
2018-03-13, 1252🔥, 0💬

Load Test Parameters in SoapUI
What are load test parameters supported in SoapUI? SoapUI supports the following load test parameters: Threads - Default is 5. Threads specifies the number of threads used to run the same test case concurrently. The more threads you use, the more load is added to the remote server. Strategy - Defaul...
2018-03-10, 2334🔥, 0💬

Load Test Result in SoapUI
How to read load test result in SoapUI? SoapUI presents the load test result with these columns: Test Step - The name of the test step executed in the test. min - The best response time in milliseconds for this test step. max - The worst response time in milliseconds for this test step. avg - The av...
2018-03-10, 1563🔥, 0💬

Create Load Test with SoapUI
How to create a load test with SoapUI? I have created test steps for the load test. You can follow this tutorial to create a load test in SoapUI. 1. Start SoapUI on your computer. 2. Click "File &gt; Import" menu to open your Flickr SoapUI test project stored in "\fyicenter\Flickr-project.xml "....
2018-03-10, 1418🔥, 0💬

Build Test Steps for Load Test with SoapUI
How to build Test Steps for a load test with SoapUI? To perform a load test, you need to build test steps in same way as normal SoapUI test project as shown in this tutorial. 1. Start SoapUI on your computer. 2. Click on "File &gt; Create Empty Project" menu. You see a new project "Project 1" cr...
2018-03-10, 1094🔥, 0💬

Save and Open "Test Batch Runner" Files
How to save and open "Test Batch Runner" Files? You can follow this tutorial to save and open "Test Batch Runner" files: 1. Start "Test Batch Runner". You see "Test Batch Runner" starts with an empty test batch list. 2. Click "Tests &gt; Add Test from Folder" menu to add multiple UFT test case f...
2018-03-04, 3491🔥, 0💬

Add Test to "Test Batch Runner"
How to add test cases to "Test Batch Runner"? You can follow this tutorial to add test cases to "Test Batch Runner": 1. Start "Test Batch Runner". 2. Open an existing batch file or stay in the empty new batch file. 3. Click "Tests &gt; Add Test from Folder" menu. You see the "Browse for Folder" ...
2018-03-04, 3219🔥, 0💬

Start "Test Batch Runner"
How to start "Test Batch Runner" on my Windows computer? There are a couple of ways to start "Test Batch Runner" on your Windows computer: 1. Go to the "Start" button, and select "All Programs &gt; HP Software &gt; HP Unified Functional Testing &gt; Tools &gt; Test Batch Runner". You...
2018-03-04, 2612🔥, 0💬

Run Tests with "Test Batch Runner"
What Run Tests with "Test Batch Runner"? You can follow this tutorial to run tests with "Test Batch Runner": 1. Start "Test Batch Runner". You see "Test Batch Runner" starts with an empty test batch list. 2. Open an existing "Test Batch Runner" file or build a new list of tests with "Tests &gt; ...
2018-03-04, 2535🔥, 0💬

What Is "Test Batch Runner" File
What Is a "Test Batch Runner" File? A "Test Batch Runner" file is a file generated by "Test Batch Runner". It store a list of tests that you put together to run a test batch. A "Test Batch Runner" file is actually a text that you open and read it in notepad. For example, if you open C:\fyicenter\UFT...
2018-03-04, 1921🔥, 0💬

Run SoapUI Test Case with TestRunner Command
How to Run SoapUI Test Case with TestRunner Command? You can follow this tutorial to run a SoapUI Test Case with TestRunner Command. 1. Open Windows command line window. 2. Go to the folder where your SoapUI project file is located and run the TestRunner command with the project file: C:\fyicenter&a...
2018-02-28, 2127🔥, 0💬

"TestRunner -r" to Print Summary Report
How to use SoapUI "TestRunner -r" command option to print test result summary? If you want to get a nice simple test result summary, you can use the SoapUI "TestRunner -r" command option as shown below: C:\fyicenter&gt;\fyicenter \SoapUI\bin\testrunner.bat-r flickr-project.xml 13:28:29,421 INFO ...
2018-02-28, 2094🔥, 0💬

What Is SoapUI TestRunner Command
What Is SoapUI TestRunner Command? SoapUI TestRunner Command is a command line tool that allows you to run test cases defined in SoapUI projects at the command line without the graphical user interface. SoapUI TestRunner Command is a nice tool for running your test cases in batch scheduled as a back...
2018-02-28, 2070🔥, 0💬

"TestRunner -M" for Test Run Log Report
How to use SoapUI "TestRunner -M" command option to create a Test Run Log Report in XML format? If you want to get a nice test run report in XML format, you can use the SoapUI "TestRunner -M" command option as shown below: C:\fyicenter&gt;\fyicenter \SoapUI\bin\testrunner.bat-M -r flickr-project...
2018-02-28, 1698🔥, 0💬

Using SoapUI TestRunner Command
Where to find tutorials on Using SoapUI TestRunner Command? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Using SoapUI TestRunner Command. What Is SoapUI TestRunner Command Run SoapUI Test Case with TestRunner Command "TestRunner -r" to Print...
2018-02-28, 1148🔥, 0💬

Using SoapUI LoadTestRunner Command
Where to find tutorials on Using SoapUI LoadTestRunner Command? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Using SoapUI LoadTestRunner Command. What Is SoapUI LoadTestRunner Command Run SoapUI Load Test with LoadTestRunner Command Load Tes...
2018-02-14, 1826🔥, 0💬

Run SoapUI Load Test with LoadTestRunner Command
How to Run SoapUI Load Test with LoadTestRunner Command? You can follow this tutorial to run a SoapUI Load Test with LoadTestRunner Command. 1. Open Windows command line window. 2. Go to the folder where your SoapUI project file is located and run the LoadTestRunner command with the project file: C:...
2018-02-14, 1791🔥, 0💬

What Is SoapUI LoadTestRunner Command
What Is SoapUI LoadTestRunner Command? SoapUI LoadTestRunner Command is a command line tool that allows you to run load tests defined in SoapUI projects at the command line without the graphical user interface. SoapUI LoadTestRunner Command is a nice tool for running your load test cases in batch sc...
2018-02-14, 1689🔥, 0💬

<< < 9 10 11 12 13 14 15 16 17 18 19 > >>   Sort: Rank