How will you handle the situation when object is not
captured during record?
Answer Posted / sadashiva
hello guys,
this is not right question to ask because we should Record
the Object then only we can run dat bt here interviwer
didnt tell anything about of objct so here possible ans is
we can move for virtual objects dats it....
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain advantages and disadvantages of ddf?
What are the types of environment variables in qtp?
descriptive program for a yahoo mail that is in yahoo mail suppose check box mailid subject assume it is like this format all things are in webtable the question is suppose some mail ids are there in that mailids i want to select the check box wich is before a@gmail.com and after that i want to click on delete button
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
what is Property......End Property loop? how to write sript for it in QTP
What are the data types in qtp?
what is profile tool?
Give the syntax to import/export xls into qtp.
How QTP identify the system time that's changes every seconds?
Is qtp supports uni-code?
What is the qtp testing process?
What is reusable action?
How to analyzing test results using quicktest professional (qtp)?
How extensive or customized are the server logging and reporting requirements; are they considered an integral part of the system and do they require testing?
Is it possible to refer the same object for referring more than one object that are of different class using the descriptive programming approach? Suppose my code is 'To create the object named as obj Set obj=Description.Create() 'To define the values obj("title").value="IE" obj("type").value="text" obj("html tag").value="INPUT" 'To set the value Browser("IE").Page("Yahoo").WebEdit(obj).Set "xyz" Can I refer the "obj" object for the three objects like Browser,page and webedit objects? If so how?