how to write testcases for web based insurance,from the
script by using qtp.
Answer / jason bourne
Hi, Are you trying to say, look - i have some QTP scripts
and you wanna have test cases written out of them manually.
Anyways i will try and help u out.
1) Open your QTP
2) Load the script
3) Ensure all the Objects are loaded into the Object
Repositary
4) Go to Keyword View
5) check the last column named " Comment "
6) Those are nothing but test cases
7) copy each lines to ur excel sheet and make modifications.
| Is This Answer Correct ? | 0 Yes | 2 No |
write a function to read the items from Combobox of Flight Reservation application and save in excel.
How Can I find the least value in a bunch of variables using qtp.. E.g.:- A = 210, B = 212, C = 60, D = 111 I don’t want to write bunch of lines for this…. Is there a way to get the result in one line…..
why don’t use real time they r not using check points
How to export QTP results to an .xls file?
Explain in brief about the quicktest professional (qtp) automation object model?
In descriptive programming how we know the properties of the objects, if application is not developed and the prototype of the application is also not developed.
Hi .. i want to write the script for the combo nox list . For example if any combo box having a multipul itme. So how can i retrive each item for each iteration ? help me out .
If there r 1000 test scripts that were written. If a change to any functionality is to be made then how can we know in which script is this functionality existing.
How to make Shared object repository in qtp 9.1 and 9.2?
Write a Script With descriptive programming(Without Repository) to update an Update an order in Flight App and verify whether it is done successfully.(Use ChildObjects method)
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
How will you find the current time of the remote machine using QTP script?