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
How can I change object description or check point values in qtp?
How can i use virtual objects? If have i created one new virtual object in a virtual object manager by following instructions.
In the website, the protocol has been changed http: to https what you will do? Tell me your approach?
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
what is test scheduleling?
Where can I find and view run-time data table?
1.explain end to end process of qc,2.how many tabs are in qc9.0,qc10.0 3.what is review, how many reviews are following in aproject 4.how will you get the requirements 5.why do we choose testing 6.how to export tc's and requirements to qc through add-ins
If a button named "CLICK" is recorded in low level recording mode , what will be the values stored for "name" property of that button in object repository ?
UFT 12.02 which ALM version will support
How to use actions in qtp ?
What is expert view in qtp?
How you debug your script?
Will there be any standards or requirements for page appearance and/or graphics throughout a site or parts of a site?
• What type of testing questions will be asked for 2+ yrs exp people in interview?
How to read a text file from QC using QTP. I would like to do something like this. But instead read a file from QC and NOT from my local drive. Set fso = CreateObject("Scripting.FileSystemObject") Set InputFile = fso.OpenTextFile("C:\test.txt", ForReading) Thanks