How to handle synchronization in UFT/QTP
In any test automation framework, browser handling is the most important part during automation scripting. Let’s see how to handle synchronization in UFT. which you…
In any test automation framework, browser handling is the most important part during automation scripting. Let’s see how to handle synchronization in UFT. which you…
Using UFT we can launch Chrome incognito with the help of a small program. First, we will create an object of shell and then we…
UFT works very well with Windows as well as web applications. To get menu and submenu names in the Windows application, we can create a…
Java is a beautiful language if you know how to build your logic. This is the most important thing of all. Invert a number using…
In order to validate prime number using Java, first of all, let’s see what is a prime number. Example code: Validate prime number using java
String reverse in VBScript is a very common task. If you need to reverse a string in VBScript without using inbuilt reverse functions, we can…
In order to verify a string is present in an array, we will utilize the dictionary object provided by VBScript. First, we will create an…
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 Jenkins Job DSL (Domain Specific Language) and Pipeline as Code, which are powerful techniques for defining and managing Jenkins…
Cucumber is a BDD-based tool that works well with selenium and many other tools. Here we have a sample Runner class to be used with…
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 most repeated value from excel using VBScript, we have a ready-to-use function created in VBScript. All you need to do is…