what are the mandatory properties in qtp?
what are the library functions in qtp?
Answers were Sorted based on User's Feedback
Answer / raju
mandatory properties are the properties of the objects must
identified by the qtp while identify the object.
we can see mandatory properties in object descriptionin
object repository after recording.
Library functions are the inbuilt functions available in
qtp .Libray fuctions are used while excuting tests by
writing vb scripts in expert view
ex: split(),mid() etc
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / baskar palani
Mandatory Properties:Is the standard or major properties is
of an object,used by qtp to identify the object in the
application.
Ex:class,label,innertext of an object
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / prasad.devathi
the mandatory propeties are object class, object text and .
the library functions are math(),strings(),date() etc
Is This Answer Correct ? | 1 Yes | 5 No |
In QTP while testing 3 tier application, It is Java Based Application developed using Java, servelets and JDBC etc... and It is a Web based Application.. which Add-In do we need to select while testing ...Java or Web Add-In
I have a tool bar where 5 different buttons are placed, but these buttons are not traceable hence i have created a virtual object on save button of this toolbar. Now pls tell me how to use this virtual object while write script.
How can we QTP Scripts in xml format? is there any way to do so?
What is the syntax to call one script from another? And what can be the syntax to call one “action” in another?
key word driven frame work is like a folder structure Question is that where is the folder like funtion library folder,object repository,data base,application scenerio folder etc are store whether in a remote machine where we have to access or in our machine (it just like VSS)
write script for bitmap image?
What is the difference betweent test and component?
HOW TO DO THE BATCH TESTING USING QTP?
Can you import and export data from XLS and how?
I want to configure the OR and library files to a particular QTP test during run time. Note: OR and Library files are located in Quality Center. Is it possible in QTP? Anybody having code?
How to call actions in QTP?
I got an error "The"flightres" Dialog was not found in the Object Repository. Check the OR to confirm that the object exists or to find the correct name for the object." while running the following script Set flightres=description.Create() flightres("text").value="Login" flightres("Class Name").value="Dialog" Set agent = description.Create() agent("nativeclass").value="WinEdit" agent("attachedtext").value="Agent Name:" Set pwd = description.Create() pwd("nativeclass").value="WinEdit" pwd("attachedtext").value="Password" Set button = description.Create() button("nativeclass").value="WinButton" button("Text").value="OK" Dialog("flightres").WinEdit("agent").Set "test" Dialog("flightres").WinEdit("pwd").Set "mercury" Dialog("flightres").WinButton("button").Click Please let me know if i made any mistake in the above script...?