WEBLOG
Getting Started with Selenium WebDriver
Table of Contents 1. Selenium and Selenium Web Driver 2. Setting-Up the Environment 3. Test Script with Selenium Web Driver 3.1) Creating a project 3.2) Creating a Class 4. Code a Simple Selenium Script 5. Running the test Testing is a critical step in the Software Development Life Cycle. Software testing helps to ensure the quality and effectiveness of the final product. Automated...
Remove Duplicates from List Using LinkedHashSet
Another implementation of the Set interface is LinkedHashSet. LinkedHashSet maintains the order of elements and helps to overcome the HashSet limitation. The following code demonstrates this: This code is quite similar to the one seen earlier, except that it uses a LinkedHashSet. The input List is passed as a parameter to the LinkedHashSet constructor. d5e45fc48b7575762bc7c187109c7ad1 Since a LinkedHasSet is used, the...
Java Tutorial #1 – Variables and Data Types
Table of Contents Introduction 1. Variables 2. Data Types Primitive Data Types Integer Data Types Decimal Data Types Character Data Types Boolean Data Types Reference Data Types Introduction Variables are names that are used to identify memory locations that store values. Each variable belongs to a particular data type. Data types determine the size of the memory location.In this article, we will...
Working with JMeter Listeners
About Listeners Listeners are used for displaying test results in JMeter. Listeners allow system engineers to analyze the responses from the testing system and monetize the request sent from JMeter. You can show the listener results in a table, tree, graph, or write into a file. These demonstrated effects consist of time details,capacity-related information, percentages, and distributions. 1. How to add...
Convert List to Array Using Stream with Param
There is an overloaded version of the Stream.toArray method which can be used to return a result array that is of the same data type as the input array. The following code demonstrates this: Firstly, the 'stream()' method is invoked on the input List which returns a Stream corresponding to the List. Then the overloaded 'toArray' method is invoked. This...
Getting Started with Apache JMeter
1. Introduction As a developer, you may have tested the functionality of your code hundreds of times during development. This is known as functional testing. Despite how familiar you are with your product, users will approach it differently and have many different use cases. That’s why you need Non-Functional Testing (NFT). Performance, Security, Usability, and Reliability are just some of...
HomeWeblog
FT AUTOMATION
How To Use TestNG with Selenium
1. What is TestNG? TestNG is an open-source automated testing framework with flexible and powerful features. It is...
HOW-TO'S
How To Setup Automatic SSH-Agent for GitBash
Using below procedure, you shall be able to setup SSH-Agent to run automatically whenever GitBash is launched...
NFT AUTOMATION
How To Create FTP Test Plan in JMeter
About File Transfer Protocol File Transfer Protocol is a widely used standard network protocol for FIle sharing between...
PROGRAMMING
Convert List to Array Using Stream without Param
Java 8 has added the Stream API that helps to easily perform bulk operations on Collections. A...
What is In-Proc and Out-Proc (COM) ?
The terms 'In-Proc' and 'Out-Proc' are to describe the kind of implementation of COM Servers. Before we begin, for those who are not quite 'COM' savvy, here is a brief preface. COM : The acronym COM stands for 'Component Object Model' and it is the technology which provides a way for applications (.exe) and libraries (.dll) to make their functionality available...
VBS Part 1 – Introduction and Background
At the upfront, this theoretical article might look boring to most of us but still, it is advisable to know about our scripting friend before we start interacting and dealing with it. This is to provide a brief background of VBS, its purpose, origin etc., and if we don't let go our patience it does turn out to be...
HP Borland’s Silk Test for Multi-Channel Testing
The growing web and mobile applications have posed several challenges for software QA teams. While usability and scalability are highly prioritized, compatibility across multiple channels and platforms is required to leverage available resources. Such a business scenario requires companies to run multi-channel testing procedures before releasing a product and this is where HP Borland Silk Test comes to your...
CODE SNIPPETS | CODEX
Java Gists
Convert String to java.time.LocalDate without Formatter
The LocalDate class has a parse method. You can use this to convert a String to a LocalDate....
Java Gists
Convert List to Array Using ToArray With Param
There is an overloaded version of the toArray method. This accepts an array as a parameter and returns a result...
How-To VBScript
How To Load XML File into DOM Using MSXML
Microsoft XML Core Services (MSXML) provides two methods for loading XML documents into the Document Object Model (DOM)...
ÂÂ



