You say it is a bug but developer say it is not a bug then
what will you do?
Answer Posted / rohini
show the Test Report Or SRS to the developer
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is post recovery scenario?
Have you used xml check point in your project?
How to Test the mainframe application?
What is Associate Repository in QTP 9.2 ?
can any body tell me how i create a simple script and apply output value on it .pls send me a step by step process
HI I want to know the detials of QTP certifications such as syllabus, study Materil etc. Can any provide me all these details?? my mail ID is krishnuvk@yahoo.com
Give me some real time point of way where exactly we can conduct audits?
What is smart identification in QTP?
How to add synchronisation points in qtp?
what is the diff between manual test plan document and automation test plan doc.can u explain indetail.
Explain the types of object repositorys in qtp?
An action has both shared and local OR associated with it and both have the same object in them. In the test which one will be considered?
What contains Data Driven Framework document in qtp?
How to upload excel files into Quality Center using QTP Script and how to delete excel files from Quality?
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