Tagged: UFT

Installing UFT

Installing UFT

After downloading UFT from HP site, You will see the folder structure as shown below. Double click on SetUp file. It may security warning window,click on Run button. You will get the window as...

Virtual object in UFT

Virtual object in UFT

UFT works on standard objects. If any application contains non-standard objects, then to work with them UFT provides a utility to map them as standard objects.This utility is called ‘ Virtual Objects’. By using...

Visual Relationship identifier in UFT

Visual Relationship identifier in UFT

In any application, if objects are dynamic and they do not have any stable property. Then, It is  a bit challenging to work with these kind of objects.In such cases, visual relationship identifier(VRI) concept will...

Encrypt and Decrypt the password in UFT

Encrypt and Decrypt the password in UFT

In most of the scenarios, we require password to login into the application or database or in any tool.It is good practice not to expose the password in the script or data input. To achieve...

Error handling in UFT – Part 1

Error handling in UFT – Part 1

It is very common to get error while writing some program. But there should be a proper way to handle the errors, capture them and report them. Before jumping to error handling,let’s understand what...

Descriptive programming

Descriptive programming

Descriptive programming is very powerful concept in UFT. Descriptive programming can be considered for the following scenarios. 1. Application is having many dynamic objects. Dynamic objects are the objects whose properties are not constant...

Debugging

Debugging

Debugging is very essentials for any programming. To catch the error and its cause or traversing through the code to verify the values etc., debugging plays a important role. we can insert the breakpoint, where...

Breakpoints

Breakpoints

Breakpoints help us in debugging the code. Execution will be paused at the line of code where the breakpoint has been applied. UFT allows us to put multiple break points. For putting the break...

Datatables

Datatables

Datatable is an in-bulit utility of UFT which is used for parametrizing the data driven test cases. It can be attached with multiple Actions and also run a particular test case with multiple set...

Function and Sub procedures

Function and Sub procedures

Function and Sub are part of procedure that help in reusability of the code. Procedure: 1. Function 2. Sub In other words, Function and sub contain a set of statement which are common for multiple...