09-15-2010, 03:09 PM
My first question will be, why do you need a list? any specific pupose?
It seems, you have not clearly understood the CreateObject function. you need to learn more about this, google on this or refer QTP help.
basically CreateObject function creates and reference to an automation object. Automation object is an object that is exposed to other applications using automation interfaces.
SO any application which is exposing its interfaces can be used as automation object and we can handle operations on it using Createobject
the syntax is CreateObject(Class) here a class would be Servername.typename
Servername would be the application providing the object and typename would be the type or the class to create object for.
In your question Application is a class for which we creating an object for QuickTest Application .
There could be number of automation server which can provide object and it would be very difficult to list out.
It seems, you have not clearly understood the CreateObject function. you need to learn more about this, google on this or refer QTP help.
basically CreateObject function creates and reference to an automation object. Automation object is an object that is exposed to other applications using automation interfaces.
SO any application which is exposing its interfaces can be used as automation object and we can handle operations on it using Createobject
the syntax is CreateObject(Class) here a class would be Servername.typename
Servername would be the application providing the object and typename would be the type or the class to create object for.
In your question Application is a class for which we creating an object for QuickTest Application .
There could be number of automation server which can provide object and it would be very difficult to list out.