How to analyzing test results using quicktest professional (qtp)?
No Answer is Posted For this Question
Be the First to Post Answer
why do we go for Test Automation?
We need to verify the user name & password in for the user validation. But we don't want to use the parameterization/ loop for user name and password. What is the way in scripting so that user & password will generate automatically.
How many types of recording facility are available in QTP?
UFT 12.02 which ALM version will support
What is the script for database check point, bitmapchek point, regular expression ?
Why we are going for descriptive programming ? I answered as 'If objects are not present in OR we will go for descriptive Programming'? Is this correct ?
Any body have QTP 9.5 licence key. please provide me at madhukar_dec30@yahoo.co.in
Differentiate the type of test cases which can be automated and which cannot be automated?
What is qtp window?
who is the best faculty in Hyderabad for QTP?
How to load a object repository in QTP during runtime?
2 Answers BNP Paribas, Virtusa,
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