Answer Posted / hema
thanx for giving these nice information.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How to analyzing test results using quicktest professional (qtp)?
What is active screen?
Explain the difference between call to action and copy action?
What are main panes available in qtp test browser?
Explain about the test fusion report of quicktest professional?
What if recovery scenarios is also failed for identify the alert ? (We are handling unexpected popup through recovery scenarios but if still recovery scenarios also failed than what should be the approach)
How is the Bitmap checkpoint different from Image checkpoint?
What is TOM in QTP?
How do you handle multiple banners(at the top the page, the banner is scrolling) in a web page(Dont take the name property(regular expression))
Explain the qtp test phases.
What is recovery scenario in qtp?
Can we run multiple QTP scripts one after the other without manual intervention? How?
Explain about the quicktest professional (qtp) automation object model?
What are the steps involved in recovery scenario wizard?
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