In how many ways we can add check points to an application
using QTP.
Answer Posted / shailaja
check points can be added in three ways. they are as follows
1) while recording (insert > check point)
2) using the active screen
3) while wiring the scripts if we want ti insert a check
point there itself then we have to right click at the point
where we have to insert the check point (right click >
insert checkpoint)
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
what type of framework u r using in ur organization
after click on compose mail how can we attached a file in qtp with vbscript code
What is the short cut keys for the following?
Can we access the java methods in qtp. Because my requirement is to access the swt(for eclipse an it is java code) methods in qtp is it possible?
How to customize qtp?
Why do we use "Text checkpoint" If we can make use of it in "standard checkpoint" ?
Hi could some one explan what is the use of the function Defination generator, And how to use the function defination generator.. Explan with the example..
What if recovery scenarios is also failed for identify the alert ? (We are handling unexpected popup through recovery scenarios but if still recovery scenarios also failed than what should be the approach)
We stored into the objects OR and then write the scripting
Pls can anyone give me the entire code for the Keyword driven framework with respect to he Flight Reservation Window in detail with explanation. Pls explain in detail stepwise. Thanks a lot. Pls very urgent?.
Which recording modes need more memory?
what is clean sweep?
If I am scripting Web-based Surveys using QTP that open up differently but at the exact same point require a username and password can I automate that username and password for all the surveys some how using QTP?
How to get the particular property value?
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