How can we merge two repositories? Can we merge two
differnt rep. I mean 1is peraction and other shared
Answer Posted / praveen
qtp 9.0 and above versions have OBJECT REPOSITORY MANAGER
which helps in merging two repositories into one.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is checkpoint in qtp?
What is synchronization point in QTP?
What are the different types of action?
What are the views available in quicktest professional (qtp)?
What is recovery scenario in qtp?
after initiating one project for testing, when exacltly QTP tester role starts?
How to use transactions in qtp?
How to capture dynamic values in load runner and how Each of the captured values are to be written to a text file (c:\temp\LoadRunner1.txt)
if anyone has idea of the interview procedure in covansys, plz send me a mail?
HI I want to know the detials of QTP certifications such as syllabus, study Materil etc. Can any provide me all these details?? my mail ID is krishnuvk@yahoo.com
when I try to run below script in QTP "totalPages" value is 2. But i am getting error message (Type mismatch: 'totalPages' Line (): "For i=1 to totalPages".) totalPages=Browser("Name:=User").Page("Title:=User").WebElem ent("innertext:=of.*").GetROProperty("InnerText") msgbox totalPages For i=1 to totalPages rnum=Browser("Name:=User").Page("Title:=User").WebTa ble("column names:=User Name;ID;Last Name;First Name").GetRowWithCellText("store4") If rnum>0 Then r=rnum Exit for End If Browser("Name:=User").Page("Title:=User").WebElement ("html tag:=A","x:=471").Click MsgBox "Exit" Next
I have developed and executed a script successfully, and saved the same to QC. When I tried to execute the script from QC, the script is not executing. What are the possible reasons?”
Hi, Can we open a test in qtp10 which is saved in qtp 9.2?
how to fetch the values from grid? & qtp recogniges that grid as a webelement? what u do?
I need to obtain the parent of an object programatically, so if I have: winButton("aButton") I need to obtain the parent part: window("Window1").Dialog("Dialog1") so I can programatically create a string of the full name of the object to call it with an execute statement in QTP I would like to use something like: part[1] = "window(""Window1"")" part[2] = "dialog(""Dialog1"")" so I can do: exeLine = part[1]&"."&part[2]&"."&"winButton(""aButton"")" Execute exeLine Apart from keeping a record of the window/dialog hierarchy is there a parent or path function/ command Thanks Adrian