<< < 9 10 11 12 13 14 15 16 17 18 19 > >>   ∑:469  Sort:Date

Test Run Case Data Object type
What is a simple data object type for test run case? Here is a simple data object type for test run cases. Test_Run_Case data type, in TestMan version 1.00, properties: ID - Identification of this test run case. Test_Run_ID - Reference to the test run data object. Test_Case_ID - Reference to the tes...
2018-09-01, ∼2235🔥, 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, ∼2225🔥, 0💬

Dump Elements with By.xpath() in Java
How to dump all HTML elements of a Web page with WebDriver in Java? If you want to dump all HTML elements of a Web page with WebDriver, you can search child element recursively using the By.xpath() method. Here is an example program that dumps all HTML elements of the loaded Web page. // DumpElement...
2020-01-04, ∼2224🔥, 0💬

Modify MySQL Table to Store New Field
How to Modify the MySQL Table to Store New Fields? I have just added "testID" to the test result file. You can follow this tutorial to modify the MySQL table to store the new field. 1. Run MySQL client tool and with this command: mysql&gt; alter table jmeter_test_result add column testID INT; 2....
2017-10-16, ∼2217🔥, 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, ∼2215🔥, 0💬

Use Firefox WebDriver with Mozilla GechoDriver
How to use Firefox WebDriver with Mozilla GechoDriver? If you are using the Firefox WebDriver with the Selenium Java API, you need to set the webdriver.gecko.driver system property to the path to the Mozilla GechoDriver driver as shown below. 1. Make sure that you have Mozilla GechoDriver WebDriver ...
2020-01-29, ∼2214🔥, 0💬

Use Query Editor on Azure Portal
How to use Query Editor on Azure Portal? Query Editor on Azure Portal is nice client tool that allows you to run SQL queries to your Azure SQL database. 1. Login to your Azure Web portal. 2. Search and select your Azure SQL Database name "fyi_db". You see a summary information of your database. 3. C...
2019-07-28, ∼2203🔥, 0💬

Edge WebDriver Test with Selenium Python API
How to use Edge WebDriver with Microsoft Edge Driver? If you are using the Edge WebDriver with the Selenium Python API, you need to make 'MicrosoftWebDriver' executable available in PATH environment variable. 1. Include path name of the 'MicrosoftWebDriver' executable in PATH environment variable. C...
2019-11-08, ∼2202🔥, 0💬

Test Case Parameter Data Object Type
What is a simple data object type for test case parameters to support a test case? A test case parameter defines a single parameter to be supported by a test case. Adding parameters to a test case, makes it more reusable. You can execute the same test case repeatedly by providing different values to...
2018-09-24, ∼2199🔥, 0💬

Test Case Step Data Object Type
What is a simple data object type for test case steps to support a test case? A test case step defines a single step to be performed during the execution of a test case. Test case steps in a test case must be defined in a sequence that the tester needs to follow to perform the test case. Here is a s...
2018-09-13, ∼2198🔥, 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, ∼2184🔥, 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, ∼2182🔥, 0💬

Introduction of Azure SQL Database
Where to find tutorials on Introduction of Azure SQL Database? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Introduction of Azure SQL Database. What Is Azure SQL Database Create Azure SQL Database Review Azure SQL Database Configuration Use ...
2019-07-18, ∼2171🔥, 0💬

Retrieve Web Page Title with WebDriver in Java
How to Retrieve Web Page Title with Selenium WebDriver in Java? Once you have connected to the Web browser using the Selenium WebDriver, you can open any remote Web page and retrieve its page title as shown in this tutorial. 3 main methods from the Selenium WebDriver class will be used: driver.get()...
2020-01-04, ∼2165🔥, 0💬

Test Case Step Assertion Data Object Type
What is a simple data object type for test case step Assertions to support a test case step? A test case step assertion defines a single assertion for a test case step. An assertion should define a way to evaluate some aspects of the expected behavior. In many cases, multiple assertions are needed t...
2018-09-13, ∼2163🔥, 0💬

What Is SOAP Web Service
What Is SOAP Web Service? SOAP (Simple Object Access Protocol) Web Service is a Web service implemented with the SOAP protocol. A SOAP Web service uses SOAP messages to exchange information between clients and the server. A SOAP message is an XML document containing the following elements: Envelope ...
2018-04-12, ∼2157🔥, 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, ∼2153🔥, 0💬

Types of Test Elements Supported in JMeter
What are different types of test elements supported in JMeter? Currently, JMeter supports the following types of test elements: 1. Test Plan - Test plans are the top level container elements in JMeter. A test plan can hold "Thread Group" elements and other non-Sampler elements. 2. Thread Group - Thr...
2018-01-27, ∼2118🔥, 0💬

What Is JMeter HTTP Request
What Is JMeter HTTP Request? A JMeter HTTP Request is a kind of test step (also called Sampler) that sends a HTTP request to a remote server. A JMeter HTTP Request has the following main attributes: Name - Name for this Thread Group. Comments - Comments about this Thread Group. Protocol - The protoc...
2017-11-18, ∼2106🔥, 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, ∼2104🔥, 0💬

Add SOAP Request as Test Step in SoapUI
How to Add SOAP Request as Test Step in SoapUI? I have the SOAP project created with the WSDL document. If you have a SOAP project created properly, you can follow this tutorial to create a test case and add SOAP Requests as test steps. 1. Start SoapUI on your computer. 2. Click "File &gt; Impor...
2018-04-07, ∼2102🔥, 0💬

Model-Based Testing Using an Implicit State Model
Introduction Several people have asked me about whether finite state machines (FSMs) are the only kind of state models that can be used in model-based testing. They usually mention this when we talk about modeling data-centric applications like Notepad, where the finite state model would get really ...
2017-11-18, ∼2102🔥, 0💬

Test Case Step Input Data Object Type
What is a simple data object type for test case step inputs to support a test case step? A test case step input defines a single input value for a test case step. The value could be a hardcoded value, the value of a parameter, or an expression based on one or more parameters. Here is a simple data o...
2018-09-13, ∼2092🔥, 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, ∼2083🔥, 0💬

<< < 9 10 11 12 13 14 15 16 17 18 19 > >>   ∑:469  Sort:Date