how to write script in qtp(vbscript)..i mean with out
application deployed..and how to call script1 into script2?
Answer Posted / chandra
use "for loop" concept for popping up error msg
| Is This Answer Correct ? | 7 Yes | 14 No |
Post New Answer View All Answers
Can the user toggle between using Local OR and shared OR for the same action?
In keyward driven framework what will be the step for yahoo login page ,inbox logout,plz explain in detail
I want to read XML file loaded in Quality center and compare the values with the values displayed in Application (web table).How can I do that
How many types of recording modes in qtp? Which will be used when?
I had installed QTP 9.2. It is working fine but whenever I open QTP, it is trying to reinstall the below-mentioned files again and again "QTP92PS82UPGRADE.exe", "recogn.dll". If anybody has these files, please provide those files in this site or you can send that files to my mail id also (lravi4u@yahoo.com). If you don't know where the files will be in the QTP, search in the QTP software CD or path of QTP program installed (C:\Program Files\Mercury Interactive\QuickTest Professional)
How many number of actions possible in qtp?
When you open QTP, how many sheets you can see?
Hi, Can anyone please tell me how to connect the QC with QTP using QTP script? Thanks in advance
Hi, i run scripts in one machine those r passed.when i run the scripts in client side those r failed.Give me such a scenario when ever u faced?
What are the recording modes in qtp?
Explain the concept of how quicktest professional identifies object?
What is throw object?
How to interact tool & application build in QTP?
can any body clearly explain about keyword driven framework .give me the explanation for files what ever you use in this frame work?
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