what is a test strategy & what is the difference between
test strategy & test plan?
Answer Posted / bhavani
Test Strategy is nothing but it describes about that what
kind of testings we are going to use in particular project.
Test Strategy comes into Test Plan document.
Test plan is a high level document. It's road map of the
entire testing activities. Test Plan covers about Summary
of the project, scope, Features to be tested, Features not
be tested, Test Strategy, Team Strength, Team member
rights, Test Schedule, Exit & Entry Creteria, Assumption &
Resumption, Contingencies. It's prepared by Team Lead.
But Test Strategy is a part of Test Plan document. It's
telling about type of testing.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
how to use the QTP choose the data from oracle? e.g. i input the identity card NO. this will be add new record in the database ,and now i want get this record's prime key.
How can get count of list box?
Explain advantages and disadvantages of ddf?
What are the factors on which script execution time is dependent?
Which scripting language used by quicktest professional (qtp)?
how to test load test and block box testing an a web based application pls give ans briefly
tell me exact differenceb bw qtp and selenium?(could not tell open soure and licennce? difference in usage and technical difference?
Where we can use the synchronization?
How to check bitmap output value?
Explain measuring transaction.
Hi Friends, Can anyone help me out in this one? In QTP, I am using Data Driver and want to parameterise multiple values (say 3 values ) for a field. How can I do it using Data Driver wizard? Plz mention it step-by-step. In the end after doing the needful, on opening the Data Driver window, how can I get number (i.e. 3) in the Parameterised column for that particualr value? Thanks a lot in advance.
how do we know whether all objects are stored in the object repository or not? how can we know if a particular object is not stored in the repository?
how to find that a file has been completely downloaded or not? I told that "download Complete" pop up. but he told the tool doesn't recognize the pop up
Generic function to search for the unique link in webtable and click on it
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