<< < 7 8 9 10 11 12 13 14 15 16 17 > >>   Sort: Date

What Is JMeter Thread Group
What Is JMeter Thread Group? A JMeter Thread Group represents a load test case which runs a sequence of test steps in multiple threads (also called users) repeatedly. A JMeter Test Plan has the following main attributes: Name - Name for this Thread Group. Comments - Comments about this Thread Group....
2017-11-18, 1880🔥, 0💬

What Is "Test Batch Runner"
What Is "Test Batch Runner"? Test Batch Runner is tool that enables you to create and maintain test batch files that contains UFT test cases. Once created, selected tests in test batch files can be executed by Test Batch Runner Test Batch Runner is usually install as part of the UFT software package...
2018-06-01, 1879🔥, 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, 1875🔥, 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, 1850🔥, 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, 1833🔥, 0💬

Start MicrosoftWebDriver WebDriver Server
How to start MicrosoftWebDriver WebDriver server? You can start MicrosoftWebDriver WebDriver server as shown in this tutorial. 1. Open a command line window and run msedgedriver.exe. You see MicrosoftWebDriver WebDriver Server is running and listening on port 17556. C:\fyicenter&gt;\fyicenter \se...
2020-03-15, 1825🔥, 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, 1823🔥, 0💬

JMeter Execution Order - Listeners
In what order Listeners are executed in JMeter? Listeners of all types are executed in the order described in the rules below: If a Listener is attached to a Sampler, it is executed after all Assertions of the Sampler. If a Listener is attached to a container (Test Plan, Thread Group, or Logical Con...
2018-10-13, 1819🔥, 0💬

Run My First JMeter Load Test
How to Run my First Load Test with JMeter? You can follow this tutorial to run your first JMeter load test. 1. Start JMeter on your computer and open "\fyicenter\First-Load-Test.jm x".2. Right-click on the "Facebook Login Test Plan", and select "Add &gt; Listener &gt; View Result in Table". ...
2017-11-18, 1819🔥, 0💬

Run SOAP Test Case in SoapUI
How to Run SOAP Test Case in SoapUI? You can follow this tutorial to run test cases in a SOAP project in SoapUI. 1. Open NDFD-soapui.xml project in SoapUI. 2. Double-click on "SOAP Request" you added as a test step in the test case. You see a sample SOAP request message. 3. Review the request messag...
2018-04-07, 1813🔥, 0💬

Select Page Element in Selenium IDE for Chrome
How to Select Page Element manually in Selenium IDE for Chrome? You use the "Record" function to select page elements to build test steps in Selenium IDE for Chrome. You can also use the "Find target in page" function to build test steps manually as shown in this tutorial. 1. Start Chrome browser an...
2019-06-23, 1808🔥, 0💬

What Are CRUD Operations in RESTful API
What Are CRUD Operations in RESTful API? CRUD (Create, Retrieve, Update and Delete) Operations in RESTful API refers to 4 primary operations that are supported by most REST compliant software: Create Operation - Implemented mostly with HTTP POST method. Allows client to create a new resource on the ...
2018-03-24, 1800🔥, 0💬

Run REST Project Request in SoapUI
How to run a REST project request in SoapUI? A request in a REST project represents a HTTP request of a specific GET or other method for a specific resource provided a REST API. This tutorial shows you how to run a request in a REST project in SoapUI using iextrading.com API as an example. 1. Start ...
2018-03-24, 1796🔥, 0💬

What Is "Run Results Viewer"
What Is "Run Results Viewer"? Run Results Viewer is tool that you can use to view run results generated by the UFT testing tool. Run Results Viewer is usually install as part of the UFT software package. The Run Results Viewer contains multiple panes, each of which displays specific types of informa...
2018-06-06, 1794🔥, 0💬

Build Object Repository with Object Spy
How to Build Object Repository with Object Spy? When writing UFT scripts for testing Web applications, you need to reference objects on each web pages. One way to build object repository is to use the UFT recording tool. Another way is to use the "Object Spy" tool as shown in this tutorial. 1. Start...
2018-05-19, 1790🔥, 0💬

Designing Test Run Data Model
Where to find tutorials on Designing Test Run Data Model? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Designing Test Run Data Model. What Is Software Test Run Test Run Data Object type Test Run Case Data Object type Test Run Case Parameter ...
2018-09-01, 1788🔥, 0💬

What Is JMeter Test Plan
What Is JMeter Test Plan? A JMeter Test Plan is a container that hold a group of related test cases. A JMeter Test Plan is the highest data entity that you can manage and run in a single JMeter session. A JMeter Test Plan has the following main attributes: Name - Name for this Test Plan. Comments - ...
2017-11-18, 1788🔥, 0💬

I/O Tests on INSERT Statements
Where to find tutorials on testing I/O Tests on INSERT Statements on SQL Server Database? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on testing I/O Tests on INSERT Statements on SQL Server Database. Use allocation_units for I/O Tests Page Siz...
2019-06-29, 1787🔥, 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, 1784🔥, 0💬

Test Script Coding with Web Page Objects
How to write test script code with Web page objects? I have captured enough objects with Object Spy. You can follow these suggestions when writing test script code with Web page objects: 1. Use the following code to access a specific browser object: objBrowser = Browser(browser_name) 'For example: o...
2018-05-08, 1781🔥, 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, 1780🔥, 0💬

Test Case Reference Data Object Type
What is a simple data object type for test case references to support a test case? A test case reference provides a single reference identification to some external resources like a requirement document, a bug report, etc. A single test case can refer to multiple external resources. Here is a simple...
2023-05-15, 1778🔥, 1💬

Create My First JMeter Load Test
How to Create my First Load Test with JMeter? I have just installed JMeter on my computer. You can follow this tutorial to create your first JMeter load test. 1. Start JMeter on your computer. 2. Right-click on "Test Plan" in left panel and select "Add &gt; Threads (Users) &gt; Thread Group"...
2017-11-18, 1773🔥, 0💬

Debug Tests in Selenium IDE for Chrome
How to debug tests in Selenium IDE for Chrome? There are several tools you can use to debug tests in Selenium IDE for Chrome, 1. Use "echo" commands to print out information in the log output. 2. Use breakpoints to pause execution to inspect the Web page in the browser. 3. Click "Resume" icon to res...
2019-07-18, 1770🔥, 0💬

<< < 7 8 9 10 11 12 13 14 15 16 17 > >>   Sort: Date