Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the responsive-lightbox domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the hueman domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/wp-includes/functions.php on line 6114
QTP Archives - Page 2 of 2 - Testingpool

Tagged: QTP

Object Repository

Object Repository

Object repository is an in-built feature of UFT. It is like a container which contains all the test objects of AUT(Application under test). You can click on the icon on tool bar to open...

Keyword and expert view

Keyword and expert view

Expert View: It is the editor where we write the script. Note: Highlighted button is used to toggle between Keyword and expert view. Keyword View: It is the view where you can see graphical hierarchy of the...

Actions in UFT

Actions

Actions help to divide the test into small parts and increase reusability. When we create a new Test , an action will be attached by default with the Test. A test is comprised of one...

Function Library

Function Library

Before moving to Function library, let’s understand what is a Function? Function: As a definition, Function is nothing but a set of statements(code) combined to cover a particular functionality. Function are used for reusability.Let’s...

Object Identification mechanism

Object Identification mechanism

In Automation testing, you hear the word ‘OBJECT’ many times. So, what is an object? Object: From automation perspective, whatever you see in an Application like Browser,Page,button,Textbox,Link,Radio button,check box etc. are called as Objects.  Now,...

ALM

Integrating with ALM

Integrating with ALM – Before connecting to ALM, we need to check an option which allows other HP products. You will find this option at the below path. Tools –> options –> GUI Testing...

File System Objects

Use of FileSystemObject

File System Object is an important concept. It is basically used for interacting with Computer’s File System. It perform operations like Creating folder,deleting folder,Creating Text file,reading ,writing etc. Let’s see use of FileSystemObject in...

Send mail from outlook with an attachment

Send mail from outlook with an attachment

You can send mail from outlook with an attachment to intended persons. Function SendMail(SendTo, Subject, Body, Attachment) Set olook=CreateObject(“Outlook.Application”) Set Mail=olook.CreateItem(0) Mail.to=SendTo Mail.Subject=Subject Mail.Body=Body If (Attachment <> “”) Then Mail.Attachments.Add(Attachment) End If Mail.Send olook.Quit...