XML using VBScript : How to 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 or FileSystemObject provides three functions to read a…
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…
Let’s see how to connect to database using VBScript through the ADODB. You just need to have the correct connection string with the right credentials….
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…
Dynamic wait in UFT can be handled In any test automation framework using simple function. 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…
In order to verify a string for the palindrome using VBScript, first you need. to reverse it and then compare it with the original value…
In order to write Excel using VBScript, we can leverage Excel.application object. This object provides multiple methods which help us to create, open, close, or…
VBScript Error handling using “on error resume next” in UFT automation scripts is very important. We have some very common VBScript examples to demonstrate it….
We have a ready-to-use 100% working code block to get column index in a webtable using UFT. Here this function will have 2 arguments. One…
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…
The function library is the backbone of any test automation framework. You can associate function library at runtime in UFT using AOM. It is designed…
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….
We can verify the position of an object using UFT by utilizing two properties named clientWidth and offSetLeft. Suppose that we have two elements namely…
We can verify presence of scrollbar using UFT very easily when we have a scrollbar present on the screen. In order to verify the presence…
If you have to create a text file using VBScript, it provides a very efficient tool FileSystemObject. Further, there are many methods provided by FileSystemObject…
FileSystemObject can be used to create a folder using VBScript. FileSystemObject also known as fso is one of the most efficient tools provided by VBScript. We…
If you want to check all checkboxes in UFT on a webpage, there are many ways to do that. One of the most used approaches…
You can ping a network using VBScript. Yes, you read it right. We don’t know how many times we must have the necessity to ping…
What is Action Template? Action Template in UFT is a mechanism provided by UFT tool that allows you to include some text in your new…
Sometimes we need to store some values in a file during a UFT test run. In UFT test script, we can store variables in an…
How to handle SSL Error in chrome using UFT Sometimes while workin on automation of an application, we face SSL error and it becomes hard…
UFT generates a very good and detailed result for the test run. It can be generated in xml and html both formats after the upgradations…
Is FireEvent not working in UFT Script ?? UFT provides a very easy to use and robust in built method to click on objects in…