60
DP 101 in 60 simple slides www.AdvancedQTP.com

QTP Descriptive Programming

Embed Size (px)

DESCRIPTION

Quicktest professional - descriptive programming 101. www.AdvancedQTP.com

Citation preview

Page 1: QTP Descriptive Programming

DP 101 in 60 simple slides

www.AdvancedQTP.com

Page 2: QTP Descriptive Programming

What is DP?

DP stands for

Descriptive Programming

Page 3: QTP Descriptive Programming

But what IS DP?

It’s a cool way to work without QTP’s Object-Repository (OR)

Page 4: QTP Descriptive Programming

Why would I want to do that?

Page 5: QTP Descriptive Programming

Many reasons

Page 6: QTP Descriptive Programming

You have to

Functions & Recovery scenarios work with different actions

Different actions = Different ORs

Page 7: QTP Descriptive Programming

Do I know you?

Can’t be sure…

Page 8: QTP Descriptive Programming

You have to

Can’t record certain objectsAuto-hide panels

Objects with changing hierarchies

Nested inner-objects, Sub menus

Page 9: QTP Descriptive Programming

Hold still, damnit!

Even when you think you got it, all the properties turn out null

Page 10: QTP Descriptive Programming

Simplicity

Why kill a fly with an atom bomb?

No need to use the OR for every one-time click button in the application

Page 11: QTP Descriptive Programming

And,You can do VERY cool things with DP

Page 12: QTP Descriptive Programming

OK, bring it on

Page 13: QTP Descriptive Programming

First, we need to better understand the Object Repository

What the OR is

How does the OR work

Page 14: QTP Descriptive Programming

I thought DP is all about NOT using the OR…

Page 15: QTP Descriptive Programming

Well, yes, but under the hood, DP & the OR work the same way

To understand the OR, is to understand DP

Page 16: QTP Descriptive Programming

What is the OR?

Page 17: QTP Descriptive Programming

A mysterious beast that records objects, in order to use them later

Page 18: QTP Descriptive Programming

What is to record an object?

Write down how to identify it

Page 19: QTP Descriptive Programming

Who are you?

=How can I identify you?

Page 20: QTP Descriptive Programming

Identification is done with

properties and values

Page 21: QTP Descriptive Programming

Who are you?

=Your height = 400

Your title = “NotePad”

You are visible (=True)

Page 22: QTP Descriptive Programming

So, What IS the OR?

Collections of properties & corresponding values

Each collection represents an object

No mysterious beast here

Page 23: QTP Descriptive Programming

OK, So what IS DP?

DP is a way for specifying the properties & values without using the OR interface

No mysterious beast here, either

Page 24: QTP Descriptive Programming

OK, I get it, there’s nothing more than properties and values

Can we get on with it?

Page 25: QTP Descriptive Programming

How do I actually use DP?

There are two ways

Page 26: QTP Descriptive Programming

1Throw the properties and values

straight into a command

Page 27: QTP Descriptive Programming

It’s the good old syntax you know, except the string between the () is not the OR name.

It’s the property:=value identification string

Page 28: QTP Descriptive Programming

That’s kinda restrictive

What if I want to use multiple identification properties?

Page 29: QTP Descriptive Programming

No problem:

VBWindow(“height:=400”, “title:=New Document”).Maximize

You can use as many properties as you like

Page 30: QTP Descriptive Programming

All fine and well, but what if I want to use regular expressions?

Page 31: QTP Descriptive Programming

No problem:

VBWindow(“title:=.*Document.*”).Maximize

ID strings are automatically interpreted as regular expressions

Page 32: QTP Descriptive Programming

2Throw the properties & values into a description object, and throw IT into

the command

Page 33: QTP Descriptive Programming

Here also, all the values are interpreted as regular expressions. To turn it off, use

oDesc(“Property1”).RegularExpression = False

Page 34: QTP Descriptive Programming

Method 1 is faster, best used for one or two commands, tops

Page 35: QTP Descriptive Programming

When you want to execute multiple commands on an object, method 2 is a better choice by far

(allows one-time definitions, multiple uses)

Page 36: QTP Descriptive Programming

You can use DP with OR

VBWindow(“OR”).VBButton(“text:=OK”).Click

Or (when oDesc is a description object):

VBWindow(“OR”).VBButton(oDesc).Click

Page 37: QTP Descriptive Programming

But, you can only start from OR, and move to DP

So this will not work:

VBWindow(“title:=notgood”).VBButton(“clickme”).Click

Page 38: QTP Descriptive Programming

And that’s about it

You can use each of the methods (or combine them), and you’ll be able to use objects that are not in the OR

Page 39: QTP Descriptive Programming

You said I could do really cool stuff with DP!

Page 40: QTP Descriptive Programming

Right you are

We’ll cover some of the more popular tricks and tips

These examples are only the tip of the iceberg. Play with them and see the true power of DP

Page 41: QTP Descriptive Programming

The power of the string

DP is nothing more than simple strings

We can do such interesting things with strings…

Page 42: QTP Descriptive Programming

The power of the string

Say we got an app with 4 checkboxes, check0, …, check4

We can set all of them with a nice simple loop:

Page 43: QTP Descriptive Programming

The power of the string

Very complex identification tasks can be done via strings manipulation

Try different variations for yourself

Page 44: QTP Descriptive Programming

Solving double objects

When QTP finds two object which match the same description, it freezes

This kinda sucks

Page 45: QTP Descriptive Programming

?

Page 46: QTP Descriptive Programming

DP has a magic property: “index”, which allows us to tell the double objects apart

Index is a zero-based counter

Page 47: QTP Descriptive Programming

All is well

Page 48: QTP Descriptive Programming

Getting objects collections

This feature is so cool, deserves a title on its own

Page 49: QTP Descriptive Programming

THE coolest thing you can do with DP, is to get a

collection of all the objects that math an identification

Page 50: QTP Descriptive Programming

I don’t know who you are, or how many are you, but I want to mark all of you!

Regular DP won’t help - Don’t know how to identify each checkbox

Page 51: QTP Descriptive Programming

Object collections to the rescue!

Step 1: define a description object

Page 52: QTP Descriptive Programming

Object collections to the rescue!

Step 2: get all matching objects

Page 53: QTP Descriptive Programming

Object collections to the rescue!

Step 3: Use the collection

oChildren now holds a collection of all the checkboxes

So the first checkbox is accessed by: oChildren(0)

Page 54: QTP Descriptive Programming

What can we do with it?

Anything we want

Page 55: QTP Descriptive Programming

Example for common uses

Mark all Checkboxes

Mark all checkboxes with a certain property (even RO)

Page 56: QTP Descriptive Programming

The possibilities are endless

Randomly input fields

Input only mandatory fields

Zero maintenance (new fields are added automatically, blind to UI changes)

Select object which match complex identification criteria (write custom if filters)

The list goes on and on…

Page 57: QTP Descriptive Programming

OK, this is indeed cool, but it only gets us the inner controls of a given window.

Can we also get the application’s top level windows?

Page 58: QTP Descriptive Programming

Sure

Page 59: QTP Descriptive Programming

So, With DP we can work with no OR

Sometimes we have to use it

Other times it’s just more fun and useful

DP also throws in a lot of extras that make it an inseparable part of good QTP automation

Taste it, Experience it, Learn it, Use it, Love it

It’s worth your while

Page 60: QTP Descriptive Programming

And that was DP in 60 slides