What is object & properties (in QTP)
Answer Posted / ramu@sunnys
actions to be performed on the object
any object have some properties like x native
class,text,visible,enable etc
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
Which scripting language used by quicktest professional?
How to handle the exceptions using recovery secnario manager in quicktest professional (qtp)?
Suggest and Define a solution for an application whose objects are not recognized by UFT?
What ate the Technologies supported by QTP?
in a web page How to check and display a particular word from a paragraph?
what are the frame work models of qtp?which frame work you follow in your company?and explain it process?
What are the ordinal identifiers in web page?
X flies from Hyd to bangalore using different methods of transportation. write the test scenarios and test cases for this?
Explain the concept of object repository?
Hi, Hope you viewers are doing fine with good health. What are the steps and connection parameters to connect to Oracle db ? Can you connect with just the Oracle client or Oracle XE ? Cheers!!
when u script reveiwing in which area u more concentrates?
hi i want license key for qtp 9.2 pls its adjust product name : quick test professional locking code :8 - 54A6A license type : seat license maintenance number : 88888888-8888 pls send license key to my email id borusu.ramkumar@gmail.com
What is the difference between byref and byval in qtp?
By using QTP can we record any log files written by the application which is in execution?
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