Friday, 24 July 2015

AUTOMATION OBJECT MODEL IN QTP


            Automation Object Model

Automation object model: (AOM)

                             Automation object model is a concept provided to automate the operations on QTP through scripting

Dim Qt      app
Dim Qttest
Set Qtapp=createobject("quicktest.application")
Qtapp.launch
Qtapp.visible=true

Qtapp.open"e:\aom1",true
Set Qttest=Qtapp.test
Qttest.run
Qttest.close

Qtapp.open"e:\aom2",true
Set Qttest= Qtapp.test




Qttest.run
Qttest.close

Qtapp.quit

No comments:

Post a Comment