How we can merge the object repositories?say if we have two
or three object repositories then how e can merge them? is
there any option in Qtp to merge the object repositories
Answer Posted / manjunathareddy
YES - you can merge 2 repositories in qtp using object
repository manager.
Merging local to shared repository.
You would need to associate the shared repository with the
action containing the local repository. Go to "object
repository manager - update from local repository" option.
Follow these steps to merge -
1. Go to resources -> object repository manager.
2. In the object repository manager window, go to file ->
open, and select the shared object repository file. Clear
the “open in read-only mode” checkbox.
3. If the repository file opened in read-only mode, go to
file -> enable editing.
4. Go to tools -> update from local repository.
Merging shared repositories
1. Open the object repository manager.
2. Go to tools -> object repository merge tool.
3. In the new merge window, browse to the primary repository
file. Select the secondary repository file.
4. Click ok
5. Review the merge statistics, as described in viewing
merge statistics, and resolve any merge conflicts that were
reported.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
can any body clearly explain about keyword driven framework .give me the explanation for files what ever you use in this frame work?
What are the five challenges you faced in QTP?
Hi. I have completed B.TECH(CS) , But I will go to "SECURITY CONSOLE OPERATING" [C.C CAMERA abservation]. IF interviwer asks " Why you choose this job ?" What we will say? urgent.........................urgent...........
What is Distributed testing? How does UFT support it?
Dis advantages of XML checkpoint ?
What are the types of data tables in qtp?
What is qtpro? What is a quick test professional?
If a button named "CLICK" is recorded in low level recording mode , what will be the values stored for "name" property of that button in object repository ?
If there is a change in the object type eg: A button is changed as link, 1. How to edit that in the shared object repository. 2.What options are available to edit the object within shared object repository other than copy from loca; 3.What would be the effect of the change in Coded Scripts within QTP and Functions stored in .vbs file which are loaded and used in QTP
what is impact analysis on regression testing?
I am in .Net development for past 3.5 years and want to enter in to automated testing and learn QTP. For this I need some good tutorial for beginners. I will be really greatful if any one has and they can send it to me on this address- ruchidureja@gmail.com
How can i use virtual objects? If have i created one new virtual object in a virtual object manager by following instructions.
How to use parameterization in qtp?
Hi Guys, I want to place all of my values which i am getting it from a loop in to a global shee. For that i had written the script like this For i = 1 to ECOs-1 ECO = List(i).GetROProperty("innertext") DataTable.AddSheet("ECOList") DataTable.GetSheet("ECOList").AddParameter "ECOList",ECO AbortECO = DataTable.GetSheet("ECOList").GetParameter ("ECOList").Value msgbox AbortECO DataTable.GetSheet("ECOList").SetNextRow Using the above script, whenever the loop iterates it is creating new column "ECOLIST" in the sheet called "ECOLIST". It means, the values are displaying in the column wise even though i added the script " DataTable.GetSheet("ECOList").SetNextRow" . The cursor is not moving to the next line. Anybody help me out how to pass the values from script to the excel(Global/Local) sheet. Pls let me know @ nbabu11@gmail.com if you are not clear about the question.
How to read a text file from QC using QTP. I would like to do something like this. But instead read a file from QC and NOT from my local drive. Set fso = CreateObject("Scripting.FileSystemObject") Set InputFile = fso.OpenTextFile("C:\test.txt", ForReading) Thanks