answersLogoWhite

0

What is run-time object in qtp?

Updated: 9/16/2023
User Avatar

Wiki User

13y ago

Best Answer

In QTP, a Run-Time Object (RO) is the state of an object QTP is using in some capacity during a test. The state of an RO is dependent on the activity of the test. An RO differs from a Test Object in that the properties of the object may change once the application is put under test. These changes are the reason for differentiating between Test time and Run time.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is run-time object in qtp?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

While recording what are the 4 activities qtp performs?

When we perform an operation on your AUT while recording, the activities QTP performs are: 1) QTP identifies the Quick Test object class that represents the object on which we performed the operation and creates the appropriate test object. 2) QTP reads the current value of the objects properties in our application and stores the list of properties and values with the test object. 3) QTP chooses a unique name for the object, generally using the value of one of it's prominent properties. 4) QTP records the operation that you perform on the object using the appropriate Quick Test test object method.


In QTP How do you bypass the object repository?

Using a programming description,you can bypass the object repository...


What object is used for calling the win32 api functions in qtp?

Extern


What is the difference between properties and methods in qtp?

property is like variable (can able to set and get value at runtime) but method is like a function which will return the value at runtime so the only different is property will hold the value untill the new value will set into that.


Addition of methods into object at runtime?

Of course not.


What is qtp latest version?

Qtp 11


What is the difference between qtp 8.2 and qtp 9.0?

The basic difference between QTP 8 and 9 versions is Object Repository Configuration and Management. In QTP 8 version... 1) The Object Repository Modes are PerAction and Shared. 2) The QTP script can get connected to one repository at one time. If per action, every action of the QTP Test Script is connected to one Repository and If shared then all the actions will be connected to one Shared Repository. 3) For shared Repository QTP Script, upon recording the user activities on AUT, the objects will be added to the Repository connected. In QTP 9 version... 1) The Object Repository Modes are Local and Shared. 2) The QTP script can get connected to more than one repository at one time. An Action can be assosiated to more than one repository simultaneously. The Repositories it connects should be Shared(external in Read only mode) other than it's own Repository (Local). 3) Upon recording the user activities on AUT, the objects will be added to the Local Repository but not the Shared as it will be read only mode. There are other minor differences that you can find in the QTP 9 version help. By the way the QTP version 9 approach has created more problems than solutions for those whose framework insists Shared Repository mode.


What is the long form of this abbrivation QTP?

The word QTP stands for Quick Test Professional. That is just one thing that QTP could possibly stand for. Quick Time Performance is also abbreviated as QTP.


Where can you get QTP training in chennai?

Actually I was unaware of QTP training in chennai. But if you were interested in online training of QTP testing i would like to suggest you Software Testing Certification wesite.http://www.softwaretesting-certification.com/category/qtp-training-tutorials/


How to Outline An Object in Unity Game During Runtime?

To outline an object at runtime in a Unity game, you can follow these steps: Add a Line Renderer component to the object you want to outline. Set the positions of the line points using the SetPositions method of the Line Renderer component. To update the object's outline during runtime, you can modify the positions of the line points as needed. This will allow you to create a visual outline around the object during the game's execution.


What is add in in qtp?

Add-in helps an application to recognize unique objects, object properties, programming languages. it is also known as plug-ins.


How can you force the garbage collector to run?

You can't force it but you call System.gc(), which is a "hint" to the runtime engine that now might be a good time to run the GC. But garbage collection using this method is not guaranteed to be done immediately. there is another way to explicitly call the gc(). this method is also define in Runtime class of package java.lang. But u can not create a direct object of class Runtime like Runtime a = new Runtime(); //wrong For that u have to call the method getRuntime() which is static and it is also define in Runtime class the way to create object is Runtime run; //right run = Runtime.getRuntime(); //right now u can call the gc() through the "run " Object. like run.gc(); //right