WHICH functionalities of QTP used in Banking project?
Answer Posted / ezhil
Parameteraization Conceptbut not sure....
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Is any limitation to xml checkpoints?
What is the recovery scenario in qtp?
can any body give the banking domain concepts/links
Is text area check point supports for web applications?
wht type of User defined functions or Java Releated functions Do we write in VB scripting
Explain different type of event trigger option.
Define Error Pane of UFT?
How many types of recording facility are available in quicktest professional?
give me an example where u used good judgement and logic in solving a problem
Why we use QTP ,We can use other tools like WR OrSilktest What r the options in Qtp that WR and Swilktest Does not have.
Do you know how to connect database? Can you tell me the procedures?
Difference between action & Reusable action?
How does QTP identify an object?
What is difference between run time object and test object?
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