<< < 5 6 7 8 9 10 11 12 13 14 15 > >>   Sort: Date

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💬

Log Messages from MicrosoftWebDriver
What log messages are generated from the MicrosoftWebDriver server? If you started the MicrosoftWebDriver server with the "--verbose" option, you should see log messages in the console as shown below: 1. Log messages after received the "POST /session" request: [...] - Received a request: POST http:/...
2021-05-04, 2155🔥, 1💬

💬 2021-05-04 Randy Fox: Everyone knows something you don’t

Enter Script Statement in UFT Test
How to enter script statements in a UFT test? Test script statements in UFT are organized into multiple actions. By default, when a new UFT test is created, an empty default Action is created and named as "Action1". You can follow these steps to open "Action1" and enter some script statements: 1. Cl...
2023-06-01, 2152🔥, 1💬

💬 2023-06-01 Raju: very informative and easy step by step tutorial

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

Format of UFT Environment Variable File
What is the Format of UFT Environment Variable Files? The Format of UFT Environment Variable Files is a simple XML file that defines a list of variables Here is a good example of a UFT environment variable file: &lt;Environment&gt; &lt;Variable&gt; &lt;Name&gt;URL&lt ;/Nam...
2018-01-24, 2139🔥, 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, 2120🔥, 0💬

Download and Install SoapUI
How to Download and Install SoapUI on my Windows computer? If you want to try SoapUI, you follow this tutorial to download and install SoapUI on your Windows computer. 1. Go to SoapUI Website . 2. Click "Get It" under the "SoapUI OpenSource" heading. 3. Save the download file to your computer like: ...
2018-02-03, 2107🔥, 0💬

Open Saved Tests on Selenium IDE for Chrome
How to Open Saved project on Selenium IDE for Chrome? I have a number of tests stored in that project. Open Saved project with Selenium IDE for Chrome is easy. Just follow this tutorial. 1. Click "Open" icon in the menu area in the Selenium IDE window. 2. Find and select the project file you saved p...
2019-09-16, 2106🔥, 0💬

Dump Elements with find_elements_by_xpath() in Python
How to dump all HTML elements of a Web page with WebDriver in Python? If you want to dump all HTML elements of a Web page with WebDriver, you can search child element recursively using the find_elements_by_xpath() method: element.find_elements_by_xpath ()- Searches and returns all HTML elements that...
2019-10-18, 2105🔥, 0💬

SOAP Request Failed in SOAP Test Case
What will happen if a SOAP request failed in a test case? When the SOAP server failed to process a SOAP request, it should return a SOAP Fault message as shown below. 1. Open NDFD-soapui.xml project in SoapUI. 2. Double-click on "SOAP Request Error" you added in the last tutorial. You see a sample S...
2018-03-31, 2096🔥, 0💬

Selenium IDE - Chrome Extension
Where to find tutorials on Using Selenium IDE as Chrome extension? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on using Selenium IDE as Chrome extension. What Is Chrome IDE as Chrome Extension Record Test with Selenium IDE on Chrome Review Rec...
2019-09-27, 2089🔥, 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, 2088🔥, 0💬

Test Case Data Object type
What is a simple data object type for test case? Here is a simple data object type for test cases. Test_Case data type, in TestMan version 1.00, properties: ID - Identification of this test case. Name - A short name for this test case. Status - The status of this text case. Examples are Active, Reti...
2018-09-24, 2082🔥, 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, 2076🔥, 0💬

Define Variable as Part of Post-Processors
How to define a variable as part of an extractor post-processor? You can follow this tutorial to define a variable as part of an extractor post-processor. 1. Open Get-Exchange-Rate.jmx. 2. Add a post-processor, Regular Expression Extractor, after the "Latest Exchange Rate" HTTP request: Reference Na...
2018-05-27, 2073🔥, 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, 2066🔥, 0💬

Add Assertion to Request in SoapUI
How to add assertions to requests in SoapUI? When you perform a request as a test step in SoapUI, you need to add some assertions to determine if the request is successful or not. You can follow this tutorial to see add assertions to a request in a SoapUI test. 1. Start SoapUI on your computer. 2. C...
2018-04-21, 2039🔥, 0💬

Load Function Library in UFT Test
How to load a Function Library file in a UFT test? There are several ways to load a function library file in a UFT test. 1. Load function library with test settings - Go to "File &gt; Settings &gt; Resources". Then click the "+" icon under the "Libraries" section. Use the file browser icon t...
2018-01-24, 2031🔥, 0💬

Exchange Rates of World Currencies
How to see Exchange Rates of World Currencies? To help you to see Exchange Rates of World Currencies, FYIcenter.com has designed this online tool. All you need to do is to select currency and amount, then click the "Show Me" button below. Exchange Rates of World Currencies will be displayed in the r...
2018-01-18, 2026🔥, 0💬

HTTP Request to Get Home Page
How to use the HTTP Request Sampler to get the home page from a Website? This tutorial shows you how to use the use the HTTP Request Sampler to get the home page from www.facebook.com. 1. Start JMeter on your computer. 2. Change the default Test Plan name to "Facebook Login Test Plan". 3. Add a chil...
2017-11-18, 2026🔥, 0💬

Setup JMeter Proxy for Recording
How to setup JMeter to be a proxy server for HTTP communication recording? You can follow this tutorial to setup JMeter to be a proxy server for HTTP communication recording. 1. Run JMeter and click "File &gt; Template" menu or the template icon. You see the template screen. 2. Select the "Recor...
2018-02-01, 2021🔥, 0💬

Add New Resource to REST API Service in SoapUI
How to add a new resource to a REST API service in SoapUI? I have created the REST project already. You can follow this tutorial to add new resources to a REST API service in SoapUI. 1. Start SoapUI on your computer. 2. Click "File &gt; Import" menu to open your SoapUI test project stored in "\f...
2018-03-24, 2015🔥, 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, 2004🔥, 0💬

Using "Test Batch Runner"
Where to find tutorials on using "Test Batch Runner"? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Using "Test Batch Runner". What Is "Test Batch Runner" Start "Test Batch Runner" Add Test to "Test Batch Runner" Save and Open "Test Batch Run...
2018-06-01, 2002🔥, 0💬

<< < 5 6 7 8 9 10 11 12 13 14 15 > >>   Sort: Date