How can i learn Descriptive programming in QTP. Please reply.
Answer Posted / jas
You should have the knowledge of Visual Basic language,
QTPs coding is exactly like VB. Descriptive programming you
can write through tht. And if you have a good knowledge of
programming it is damn easy for u
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
why you have standardized functions? plzzz guys with real time exp. do answer
How to run a test using quicktest professional (qtp)?
How to use debug tools?
Can we record an application running on a remote machine using qtp?
What are the different properties of an web object
what the difference between shared repository and per action repository?
In qtp is it possible to check broken links of a page?
What are the ordinal identifiers in web page?
What are the different recording modes?
What is throw object?
What is environment variable in qtp and why to use it?
www.icici.com after this home page wll came, in this page what r the items we r going to test for manual and what the element we r test for QTP... explian clearly with example
How to use conditional loops in qtp ?
What is regular expression?
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