banking domain description for software tester for interview
No Answer is Posted For this Question
Be the First to Post Answer
WHat is Object Identification and Object Spy?
Can I import a excel sheet in Action1 datatable? How?
after initiating one project for testing, when exacltly QTP tester role starts?
In QTP , Test Director combination . what is the role of Test Director? How QTP Launching QTP in T.D ? If it is Winrunner possible. but QTP How it is possible?
why don’t use real time they r not using check points
what are the different u notice in betweem QTP version 8.2 and 9.2 and what is new in QTP9.2
What is keyword driven framework, what is "key" in It.
what are the environment variables,how do you use them. give an example.
Explain types of exception handling and script for that?
What is a data driven test in qtp?
1. What is diffrence between Analog Recording And Lomlevel Recording ?
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