Tuesday, April 17, 2012

Recording Modes in QTP

QTP supports 3 types of recording modes

  • 1) Context Sensitive
  • 2)Analog
  • 3) Low Level

Context Sensitive Recording mode
  • Normal recording mode is also called Context Sensitive Mode
  • It is the default mode of recording which takes full advantage of Quick Test Professional's  test object model.
  • It recognizes objects in application regardless of their location on the screen.
  • It records the objects in your application and the operations performed on them

Analog Recording Mode

  • In analog recording mode, Quick Test Professional  records and tracks every movement of the mouse as you drag the mouse around a screen or window.
  • QTP’s Analog recording is captured as  Tracks and stored in the directory of your test
  • It is useful  for recording operations that cannot be recorded at the level of an object. Eg., A signature produced by dragging the mouse
  • In Analog mode you can record 1) Record Relative to screen & 2) Relative to window
  • When your analog operation are confined to just one window , use relative to window
  • When your analog operation involve multiple screens like dragging and dropping an object from one window to other use the screen option

Low Level Mode
  • This mode enables you to record on any object in your application, irrespective of  QTP recognizes the specific object or the specific operation.
  • This mode records at the object level and records all run-time objects as either Window or WinObject test objects..
  • It is used when the exact coordinates of the object are important for your tests.  A good example would be hashmaps where clicking different sections of a picture takes you to different links
  • Used when recording tests in an environment (or on an object) not recognized by QTP
  • Low level mode records the x,y coordinates of any clicks

Summary
  • Analog recording and low-level recording require more disk space than normal recording mode.
  • For both modes , screen positions during the record and run time needs to be identical otherwise script fails
  • Hence, Use analog recording or low-level recording only when normal recording mode does not accurately record your operation.
  • At times QTP automatically switches to low level mode while recording objects or environments not supported by QTP

Automation Framework

Framework can be defined as a set of guidelines which when followed produce beneficial results.

what is a Automation Framework ?
A set of guidelines like coding standards , test-data handling , object repository treatment  etc... which when followed during automation scripting produce beneficial outcomes like increase code re-usage ,  higher portability  , reduced script maintenance cost  etc. Mind you these are just guidelines and not rules; they are not mandatory and you can still script without following the guidelines. But you will miss out on the advantages of having a Framework.

Types of Automation Framework
1) Record and Play Framework
2)The Test Library Architecture Framework.
3)The Data-Driven Testing Framework.
4)The Keyword-Driven or Table-Driven Testing Framework.
5)The Hybrid Test Automation Framework.

1) Record and Play Framework
It is the simplest of all Frameworks and also know as "Record & Playback".In this Framework , Tester manually records each step ( Navigation and User Inputs), Inserts Checkpoints ( Validation Steps) in the first round . He then , Plays back the recorded script in the subsequent rounds.

Ex :  Consider logging into Flight Reservation Application and checking wether the application has loaded on successful log-on. Here , the tester will simply record the steps and add validation steps.

      SystemUtil.Run "flight4a.exe","","","open"
      Dialog("Login").WinEdit("Agent Name:").Set "Guru99"
      Dialog("Login").WinEdit("Password:").Set "Mercury"
      Dialog("Login").WinButton("OK").Click
      'Check Flight Reservation Window has loaded after successful log-on
      Window("Flight Reservation").Check CheckPoint("Flight Reservation")

Advantages
  • Fastest way to generate script
  • Automation expertise not required
  • Easiest way to learn the features of the Testing Tool

Disadvantages
  • Little reuse of scripts
  • Test data is hard coded into the script
  • Maintenance Nightmare
2)The Test Library Architecture Framework.

It is also know as "Structured Scripting" or "Functional Decomposition".
In this Framework , test scripts are initially recorded by “Record & Playback” method. Later, common tasks inside the scripts are identified and grouped into Functions. These Functions are called by main test script called Driver in different ways to create test cases.
Ex:Using the same example as above, the function for logging in to Flight Reservation will look like .

      Function Login()
      SystemUtil.Run "flight4a.exe","","","open"
      Dialog("Login").WinEdit("Agent Name:").Set "Guru99"
      Dialog("Login").WinEdit("Password:").Set "Mercury"
      Dialog("Login").WinButton("OK").Click
      End Function

Now, you will call this function in the main script as follows
      'Driver Script
      Call Login()
      ---------------------------
      Other Function calls / Test Steps.
      ---------------------------


Advantages
  • Higher level of code reuse is achieved in Structured Scripting as compared to “Record & Playback”
  • The automation scripts are less costly to develop due to higher code re-use
  • Easier Script Maintenance

Disadvantages
  • Technical expertise is necessary to write  Scripts using Test Library Framework.
  • More time is needed to plan and prepare test scripts.
  • Test Data is hard coded within the scripts

3)The Data-Driven Testing Framework.
In this Framework , while Test case logic resides in Test Scripts, the Test Data is separated and kept outside the Test Scripts.Test Data is read from the external files (Excel Files, Text Files, CSV Files, ODBC Sources, DAO Objects, ADO Objects) and are loaded into the variables inside the Test Script. Variables are used both for Input values and for Verification values. Test Scripts themselves are prepared either using Linear Scripting  or Test Library Framework.

Ex: Developing the Flight Reservation Login script using this method will involve two steps.

Step 1) Create a Test - Data file which could be Excel , CSV , or any other database source.

AgentName
Password
Jimmy
Mercury
Tina
MERCURY
Bill
MerCURY

Step 2) Develop Test Script and make references to your Test- Data source.

      SystemUtil.Run "flight4a.exe","","","open"
      Dialog("Login").WinEdit("Agent Name:").Set DataTable("AgentName", dtGlobalSheet)
      Dialog("Login").WinEdit("Password:").Set DataTable("Password", dtGlobalSheet)
      Dialog("Login").WinButton("OK").Click
      'Check Flight Reservation Window has loaded
      Window("Flight Reservation").Check CheckPoint("Flight Reservation")
      **Note “dtGlobalSheet” is the default excel sheet provided by QTP.

Advantages
  • Changes to the Test Scripts do not affect the Test Data
  • Test Cases can be executed with multiple Sets of Data
  • A Variety of Test Scenarios can be executed by just varying the Test Data in the External Data File

DisAdvantages
  • More time is needed to plan and prepare both Test Scripts and Test Data

4)The Keyword-Driven or Table-Driven Testing Framework.
The Keyword-Driven or Table-Driven framework requires the development of data tables and keywords, independent of the test automation tool used to execute them . Tests can be designed with or without the Application. In a keyword-driven test, the functionality of the application-under-test is documented in a table as well as in step-by-step instructions for each test.
There are 3 basis components of a Keyword Driven Framework viz. Keyword , Application Map , Component Function.

What is a Keyword ?
Keyword is an Action that can be performed on a GUI Component. Ex . For GUI Component Textbox some Keywords ( Action) would be InputText, VerifyValue, VerifyProperty and so on.

What is Application Map?
An Application Map Provides Named References for GUI Components. Application Maps are nothing but “Object Repositry

What is Component Function?
Component Functions are those functions that actively manipulate or interrogate GUI component. An example of a function would be click on web button with all error handling , enter data in a Web Edit with all error handling. Component functions could be application dependent or independent.

Ex: To understand Keyword View lets take the same example. It invovles 2 steps

Step 1: Creating Data Table (Different from Test-Data Table created in Data Driven Framework). This Data Table contains Action to be performed on GUI Objects and correspoding arguments if any. Each row respresents one Test Step.

Object
(Application MAP)
Action
(KEYWORDS)
Argument
WinEdit(Agent Name)
Set
Guru99
WinEdit(Password)
Set
Mercury
WinButton(OK)
Click
 
Window(Flight Reservation)
Verify
Exists


Step 2: Writing Code in the form of Component Functions.
Once you've created your data table(s), you simply write a program or a set of scripts that reads in each step, executes the step based on the keyword contained the Action field, performs error checking, and logs any relevant information. This program or set of scripts would look similar to the pseudo code below:

      Function main()
     {
                Call ConnectTable(Name of the Table) {   //Calling Function for connecting to the table.
                        while (Call TableParser() != -1)  //Calling function for Parsing and extracting values from the table.
                       {
                           Pass values to appropriate  COMPONENT functions. Like Set(Object Name , Argument) ex. Set( Agent Name , Guru99).
                       }
                }   
                      Call CloseConnection()   //Function for Closing connection after all the operation has been performed.
      }   //End of main

Thats all to Keyword Driven Framework.

The advantage of Keyword Driven Framework is that the Keywords are re-usable. To understand this consider  you want to verify login operation for a Website say YAHOO MAIL.  The table will look like this -

Object
(APPLICATION MAP)
   Action
(KEYWORD)
      Argument
WebEdit(UserName)
Set
abc@yahoo.com
WebEdit(Password)
Set
xxxxx
WebButton(OK)
Click
 
Window(Yahoo Mail)
Verify
Loads

If you observe in this case the Keywords Set , Click , Verify remain the same for which corresponding component functions are already developed. All you need to do is change the Application Mapping (Object Repository) from earlier Flight Reservation to Yahoo Mail , with change in argument values and the same script will work!

Advantages
  • Provides high code re-usability
  • Test Tool Independent
  • Independent of Application Under Test, same script works for AUT (with some limitations)
  • Tests can be designed with or without AUT

Disadvantages
  • Initial investment being pretty high, the benefits of this can only be realized if the application is considerably big and the test scripts are to be maintained for quite a few years.
  • High Automation expertise is required to create the Keyword Driven Framework.


NOTE : Even though QTP advertises itself as KeyWord Driven Framework, you can not achieve complete test tool and application idependence using QTP.


5)The Hybrid Test Automation Framework.
As the name suggests this framework is the combination of one or more frameworks discussed above pulling from their strengths and trying to mitigate their weaknesses. This hybrid test automation framework is what most frameworks evolve into over time and multiple projects. Maximum industry uses Keyword Framework in combination of Function decomposition method.

PS:  Other Frameworks worth a mention are


1) Test Modularity Framework 
In this framework common task in test script are grouped together as Modules.
Ex:Using Actions in QTP use can create a Modualr Scripts
      ‘Sample Script for Login
      SystemUtil.Run "flight4a.exe","","","open"
      Dialog("Login").WinEdit("Agent Name:").Set "Guru99"
      Dialog("Login").WinEdit("Password:").Set "Mercury"
      Dialog("Login").WinButton("OK").Click
      ‘End of Script

Now you can call this Action in the main script as follows -
      RunAction ("Login[Argument]", oneIteration)