Answer Posted / vasavi juvvadi
Virtual Object Wizard in the QTP is used to map an object,
which is not recognized by the QTP as Virtual Object in
order to recognize it during the Run time
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Mention the different actions types of qtp.
QTP 10.0 is not identifying web objects for IE 8.it is identifying like winObject.I installed HP patch QTPWEB_00037.Still getting issue
How to record a qtp script ?
Hi any body pls help me for QTP 11.0 software free demo version. i have to practice. Kindly send the link.or where i have to download.
What is text check point and text area check point?
There are 10 rows in the datatable. How can we fetch 2 rows and then skip 3rd row. After that, pick 4th & 5th row and skip 6th row. Please share code
How do we analyze the checkpoint results?
How reliable are the site's Internet connections required to be? And how does that affect backup system or redundant connection requirements and testing?
how to find that tools work well with your existing system?
distinguish between old version and new version QTP features.
What is the syntax to call one script from another?
i am new QTP... please tell me automation frameworks , types & for whiich type of applications frameworks are used & how to generate script in keyword driven framework
What are the views available in quicktest professional?
if anyone has idea of the interview procedure in covansys, plz send me a mail?
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