VBScript Error Handling – On Error Resume Next, On Error Goto 0
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….
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…
The function library is the backbone of any test automation framework. You can associate function library at runtime using AOM. It is designed to handle…
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. This can be achieved 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…
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…
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…
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…
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…