Get menu and submenu names in the Windows application using UFT
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…
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 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…