How to Work with XML using VBScript : Read, Write and Modify
We can work with XML using VBScript in different ways. One way is by leveraging XMLDOM. XMLDOM is a programming interface to access and manipulate…
We can work with XML using VBScript in different ways. One way is by leveraging XMLDOM. XMLDOM is a programming interface to access and manipulate…
Working with text files is a common requirement in test automation. In this guide, we’ll walk you through how to read write text files using…
In this guide, we’ll explore how to connect to SQL Server with VBScript, execute a query, and retrieve the results. This can be particularly useful…
We can write text file using VBScript with the help of many functions provided by FileSystemObject. Functions provided by FileSystemObject such as Write, Writeline, Writeblanklines…
In order to read text file using VBScript, we can use multiple methods provided by FileSystemObject. FSO provides three functions i.e. read, readline, readall. These…
While using FireEvent in UFT, sometimes we may face FireEvent not working issue. UFT provides a very easy to use and robust in built method…
Microsoft Outlook is a widely used email client for personal and professional communication. If you’re looking for Outlook automation for tasks like sending emails, reading…
In this blog post, we’ll explore how to handle SSL error in UFT using VBScript, so you can bypass these roadblocks and proceed with your…
Recovery scenario in UFT is designed to handle unexpected issues during test execution by UFT. There are four types of recovery scenarios. Let’s see how…
Excel workbooks are the most common and an excellent way of storing data. Did you know you can connect to the excel workbook as a…
VBScript provides one of the best ways to connect to any kind of database. That is through the ADODB connection. Lets see how to connect…
Using VBScript, we can easily work with automating network connections such as: Connect to wifi , Disable a firewall etc. VBScript comes with inbuilt capability…
File upload is a crucial part of test automation. There may be several use cases where you need to upload a file through ftp using…
In any test automation framework, browser handling is the most important part during automation scripting. UFT Synchronization – Let’s see how to handle synchronization in…
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…
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…