Count Alphabetical characters using VBScript- 2 Methods
In order to count Alphabetical characters using VBScript in a string, first we need to get the characters from the given string, one char at…
In order to count Alphabetical characters using VBScript in a string, first we need to get the characters from the given string, one char at…
A palindrome is a word, sentence, verse, or even number that reads the same backward or forward. For example- ATATA, BOB, 12321 In order to verify…
In order to write data into Excel using VBScript, we can leverage Excel.application object. This object provides multiple methods which help us to create, open,…
In this section, we will explore the advanced configuration options available in Jenkins. We will focus on the global settings that apply to the entire…
In this section, we will explore how to manage Jenkins nodes and configure distributed builds. Jenkins allows you to distribute your build workload across multiple…
In this section, we will explore Jenkins Job DSL (Domain Specific Language) and Pipeline as Code, which are powerful techniques for defining and managing Jenkins…
Runner class in Cucumber helps to execute tests in a structured manner. You can say it is the control center for the Cucucmber BDD framework….
In order to read write excel file in Java and APACHE POI, we can use this method which uses FileInputStream, and XSSFWorkbook to get into…
Test Automation frameworks based on the Page object model design pattern and Page Factory in Selenium WebDriver help to keep the locators separate from the…
To read an XML file using Java, you can use the javax.xml.parsers.DocumentBuilder class and its parse method. Here is an example of how you might…
To read a JSON file using Java, you can use the org.json library. Here’s an example of how you can use this library to read…
You can select a dropdown using Puppeteer by following these steps: First of all, find the element on the page using a DOM selector. You…
VBScript Error handling in UFT automation scripts is very important like in any other language. We have some very common VBScript examples to demonstrate it….
Suppose that there is a webtable on the page and you have a column name. Now if you want to get the column index in…
In order to get repeated value from excel using VBScript, we can utilize dictionary object in VBScript. We have a ready-to-use function here created in…
In javascript-based test automation projects, if you need to rename a file using javascript, you can do that by using fs node package. These are very important…
In test automation projects, if you need to delete a file using javascript, you can leverage the ‘fs’ node package. These are very important for any Javascript-based…
The function library is the backbone of any test automation framework. You can associate function library at runtime using AOM. It is designed to handle…
We have to verify object property using UFT in almost every automation script we create while working on any test automation project. Here we have…
There may be some instances where you need to copy and paste or select all text using UFT. You can achieve this in many ways….