Explain about the QTP Automation Object Model.
Automation Object Model is a collection of objects, methods and properties. This collection is used for performing quick test operations. Any operation described in QTP interface can be performed throughout automation object model.
Every option in QTP interface have objects, methods and properties are exposed by Quick Test Automation Object Model along with standard programming elements like control structures.
Exampledim qtApp
set qtApp=createobject("QuickTest.Application")
qtApp.Launch /*It launches the QTP
qtApp.visible= "true" /* Qtp is visible to us
qtApp.close /* It closes the Qtp
Explain about the QTP Automation Object Model.
QTP automation object model can be used to represent configurations through objects, methods and properties. These objects, methods and properties are used to design the automation scripts along with some standard programming loops and conditional statements. Usually, most dialog boxes in QuickTest have a corresponding automation object. Automation scripts help in performing the same task repeatedly or configure quick test pro as per the needs.