1)what is the quality process in QTP?
2)how to add the .tsr file in qtp through scripting?
Process in QTP:
Generating and Enchancing the script
Debugging the script
Executing the script
Analyzing the script
Reporting
2. We can do it in two way using scripting
a)Using RepositoriesCollection.Add "Path of the .tsr file"
b)using AOM
set qtapp=CreateObject("QuickTest.APPlicaiton")
set qttest=qtapp.Test.Action[Action Name]
set or=qttest.ObjectRepositories
or.add "path of the .tsr file"
set qttest=Nothing
set qtapp=Nothing
regards,
mahi.kotike@gmail.com
Is This Answer Correct ? | 2 Yes | 0 No |
What is the main differece between QTP 9.0 and 9.2
How to modify object property in qtp ?
How to make qtp understand the difference amongst the same type of objects .suppose there are 5 check boxes in a page and I have to choose the 2nd one, how to do that through script?
Describe the process for writing text check point for a web application?
How to remove associated function library?
In a flight window we have to enter the name and meal request for every passenger.In that window if we give Total passengers=1 then the Psngr1 name field and psngr1 meal request field will reflects.if we give Total passengers=2 then Psngr1 name field and psngr1 meal request field,Psngr2 name field and psngr2 meal request field and so on. how we can handle this scenerio thru Descriptive programming?
In qtp, how you can get the last character from a string?
what is the criteria for choosing test cases for automation? Ex: if you have some 300 test cases, then how many you choose for automation. what is criteria of selecting?
3 Answers Aricent, Delhi University, TCS,
what is the diff between Procedure and function
What is a Run-Time Data Table? Where can I find and view this table?
Where is the resultset of a sqlquery (which is fired by rsobj.open sqlquery,xxxx,xxxx) stored ?
In what occasion we can specify global sheet and action sheet?