what is object repository size?

Answer Posted / shilpa

i think or size will be limited in qtp8.2&9.2 in9.2 we can
merge object reposiytory(or) files we able to create new
objects but all objects not recogniged by tool then we go
for descriptive

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can you identify the browser and its information using QTP script?

551


What is a quick test professional?

638


Is the qtp course will help to create a virtual object?

1518


Is it possible to change the property value at runtime? How it is possible?

575


To which environments does quicktest professional (qtp) supports?

593






How do you do batch testing in wr & is it possible to do in qtp, if so explain?

625


How we can use the database checkpoint on a java web based application in which the database connectivity is done using JDBC->Pure Java type (in this type there is no need to create a DSN). At present in QTP we can fetch database values using checkpoint only through DSN. Is there any programming for this if we don't have DSN (ODBC)

1856


how to test use the quality control .how to verify the image verification

2548


PLEASE TELL ME WHEN DO YOU USE THE OBJECT SPY AT RUN TIME

5964


what is keyword driven testing in qtp?n how is it useful?

1493


Which scripting language used by quicktest professional?

533


i need code for how to click on particular mail in utlook mail box .its urjent Thank You Balaji

1582


How can you give wait up to 10 seconds in qtp?

588


I had installed QTP 9.2. It is working fine but whenever I open QTP, it is trying to reinstall the below-mentioned files again and again "QTP92PS82UPGRADE.exe", "recogn.dll". If anybody has these files, please provide those files in this site or you can send that files to my mail id also (lravi4u@yahoo.com). If you don't know where the files will be in the QTP, search in the QTP software CD or path of QTP program installed (C:\Program Files\Mercury Interactive\QuickTest Professional)

1465


I have written a code to fetch values fro access db and place in the fields. Iam using GetROProperty to fetch runtime values. Now i want to add runtime values to the access db in field v3. please help me. Its not writting in the db. Option explicit Dim con,rs,db,c Set con=createobject("adodb.connection") Set rs=createobject("adodb.recordset") con.Open "Driver={Microsoft Access Driver (*.mdb)};dbq=D:\Sales.mdb" rs.open "select * from tax",con Do while not rs.eof Browser("Sales Tax Calculator").Page("Sales Tax Calculator").WebEdit("incost").Set rs.fields("v1") Browser("Sales Tax Calculator").Page("Sales Tax Calculator").WebEdit("intax").Set rs.fields("v2") c=Browser("Sales Tax Calculator").Page("Sales Tax Calculator").WebEdit("outtax").GetROProperty("value") rs.MoveNext print c Loop Do while not rs.EOF rs.EditMode rs.Fields("v3").Value="3" rs.Update rs.MoveNext Loop Set rs=nothing Set con=nothing

1487