how to retrieve the xml file data through qtp. can anybody
send script for this..
Answer Posted / prasad
Using QTP output value
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain measuring transaction.
If we put all properties in mandatory and assistive list of Normal Identification, Do we still need Smart?
Why is action split used by qtp?
What are the technics follow in writing VB script?
1--How many functions u develop 2--What is an array 3-- where is ur server 4--U involved in unit testing 5--how ur test the background colour using QTP
What are the steps involved in recovery scenario wizard?
Explain actions in qtp ?
What are test settings and global settings?
What is ‘object spy’ and what is the function of object spy in qtp?
How will you declare a variable in qtp?
How to handle dynamic objects in quicktest professional?
What is the registration process and examination fees?
Explain about the test fusion report of quicktest professional?
HOW AUTOMATE TEST SCRIPT ? what time it will do? after gneration of basic script or Any , Plz explain detailed?
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