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…
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…
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…
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….
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…