WHAT IS A TEST STRATEGY & WHAT IS THE DIFFERENCE BETWEEN
TEST STRATEGY & TEST PLAN?

Answers were Sorted based on User's Feedback



WHAT IS A TEST STRATEGY & WHAT IS THE DIFFERENCE BETWEEN TEST STRATEGY & TEST PLAN?..

Answer / manju

Test Strategy : It overall approach of testing and it is basically common in project for all phase,Created by Project manager.

Test Plan: Strategy is part of Plan,Plan include Scope ,Overview of testing,Risks , Environment,Technique,Number of tester,Schedule,entry Point(When to start(test case writing after after requirement complete and Run test case after build given by development).
Plan is different for each phase and Create by test lead.

Is This Answer Correct ?    1 Yes 0 No

WHAT IS A TEST STRATEGY & WHAT IS THE DIFFERENCE BETWEEN TEST STRATEGY & TEST PLAN?..

Answer / k s chandrashekar

Test strategy is the part of test plan and which drives the testing technique end to end of the application.

1.Understand the design and work flow of the application with specifications. 2.Analyse the technology which is used for development. 3. Analyse the production environment.

The above points should be noted and design the test technique such that it should meet the client specification.

Test technique means design test cases with respect to requirement specification and what type of testing is required to achieve the best quality.

Is This Answer Correct ?    1 Yes 0 No

WHAT IS A TEST STRATEGY & WHAT IS THE DIFFERENCE BETWEEN TEST STRATEGY & TEST PLAN?..

Answer / v.m.rajesh

Test strategy is a statement which covers overall approach
to testing and it indicates levels of testing to be
applied,techniques, method and tools to be used.It should
be prepared at the first stage of testing life cycle.It can
be a part of testpaln.

Test plan is a document which covers activities to be done
for the testing process.It should say "why" and "how"
product is validated.

Is This Answer Correct ?    5 Yes 5 No

WHAT IS A TEST STRATEGY & WHAT IS THE DIFFERENCE BETWEEN TEST STRATEGY & TEST PLAN?..

Answer / badhu

This answer is partially correct Test strategy is not a part of test plan rather test plan is the part of TS.

Is This Answer Correct ?    1 Yes 1 No

WHAT IS A TEST STRATEGY & WHAT IS THE DIFFERENCE BETWEEN TEST STRATEGY & TEST PLAN?..

Answer / shubhashini k l

Test Plan: Test plan is a Document, developed by the Test
Lead, which contains "What to Test","How to Test", "When to
Test", "Who to Test".

Test Strategy: Test Strategy is a Document, developed by
the Project manager, which contains what type of technique
to follow and which module to test

Is This Answer Correct ?    0 Yes 0 No

WHAT IS A TEST STRATEGY & WHAT IS THE DIFFERENCE BETWEEN TEST STRATEGY & TEST PLAN?..

Answer / nandu

Test strategy is a document which consists the whole
information about the Project or the build having overall
requirements of the functional and non functional. Test plan
is the thing which consists of the information for testing
that how to test, who to test and when to test.

Is This Answer Correct ?    1 Yes 2 No

WHAT IS A TEST STRATEGY & WHAT IS THE DIFFERENCE BETWEEN TEST STRATEGY & TEST PLAN?..

Answer / venkatesh

Test strategy is part of test planning doc.

Test stategy explains what are all the kind of testings
that should be done.

Is This Answer Correct ?    5 Yes 8 No

WHAT IS A TEST STRATEGY & WHAT IS THE DIFFERENCE BETWEEN TEST STRATEGY & TEST PLAN?..

Answer / nandini patil

Test Stratergy : it is organisation level term which is
common for all project with small customisations

Test Plan: it is a project level term which is used for
testing a specific project.

Is This Answer Correct ?    11 Yes 20 No

WHAT IS A TEST STRATEGY & WHAT IS THE DIFFERENCE BETWEEN TEST STRATEGY & TEST PLAN?..

Answer / pradeep.y

Is test strategy part of test plan? when does test strategy
comes into picture during SDLC?

Is This Answer Correct ?    4 Yes 14 No

WHAT IS A TEST STRATEGY & WHAT IS THE DIFFERENCE BETWEEN TEST STRATEGY & TEST PLAN?..

Answer / qtp learner

Test Plan : what to test

Test strategy : How to test

Is This Answer Correct ?    16 Yes 42 No

Post New Answer

More QTP Interview Questions

Explain in brief about the QTP Automation Object Model.

0 Answers   Crea,


Explain how you can replace string in qtp?

0 Answers  


1. What is the difference between Keyword and function in the keyword driven framework? 2. How do you associate Keywords to the script ?

0 Answers  


how to generate numbers in between to numbers suppose numbers in between 500 to 1000 in sequencies using vbscript

1 Answers  


How do you script a nested loop in QTP? I am showing a snipet of my code. Any suggestions to help me get this to work would be great appreciated! STEP A - Customer Number: No loop - ISBN: Loop STEP B - Customer Number: Loop - ISBN: Nested Loop Here is the code I am using now. I am using i for the loop and j for the nested loop in STEP B of my script. =========================================== 'CREATE AN ADDITIONAL CUSTOMER Dim myNum, RowNum, RowCnt2, val2, total, i DataTable.ImportSheet "C:\QOE Data - UAT1.xls" ,"Data" ,"Global" RowCnt2 = DataTable.GetRowCount i = 1 DataTable.SetCurrentRow(i) ' Set row to one Do while Not i > RowCnt2 i=i+1 DataTable.SetNextRow MsgBox Datatable.Value("Customer_Num") Msgbox i Msgbox RowCnt2 If Not i > RowCnt2 then val2=datatable.Value("Customer_Num","Global") OracleFormWindow("Sales Order").SelectMenu "File->New" OracleFormWindow("Sales Order").OracleTabbedRegion("Order Information").OracleTextField("Customer Number").SetFocus OracleFormWindow("Sales Order").OracleTabbedRegion("Order Information").OracleTextField("Customer Number").Enter val2 End If 'CREATE SECOND ISBN LIST DataTable.ImportSheet "C:\QOE Data - UAT1.xls" ,"Data" ,"Global" Dim j, RowCnt3, val3 RowCnt3 = DataTable.GetRowCount For j = 1 To RowCnt3 DataTable.SetCurrentRow(i) ' datatable.getSheet("DataTable").setNextRow If Trim(DataTable("ISBN",dtGlobalSheet)) = "" Then j = j - 1 Exit For End If Next 'Define ISBN rows If RowCnt3 <> j Then RowCnt3 = j End If 'Loop through ISBN rows For j = 1 To RowCnt3 DataTable.SetCurrentRow(i) val3 = Datatable.Value("ISBN","Global") msgbox j If j = 1 Then OracleFormWindow("Sales Order").OracleTabbedRegion("Line Items").OracleTextField("Ordered Item").SetFocus OracleFormWindow("Sales Order").OracleTabbedRegion("Line Items").OracleTextField("Ordered Item").Enter val3 else If j < 16 Then OracleFormWindow("Sales Order").OracleTabbedRegion("Line Items").OracleTextField("Ordered Item_"&i).SetFocus OracleFormWindow("Sales Order").OracleTabbedRegion("Line Items").OracleTextField("Ordered Item_"&i).Enter val3 else If RowCnt1 => 16 Then OracleFormWindow("Sales Order").OracleTabbedRegion("Line Items").OracleTextField("Ordered Item_15").SetFocus OracleFormWindow("Sales Order").OracleTabbedRegion("Line Items").OracleTextField("Ordered Item_15").InvokeSoftkey "DOWN" OracleFormWindow("Sales Order").OracleTabbedRegion("Line Items").OracleTextField("Ordered Item_15").SetFocus OracleFormWindow("Sales Order").OracleTabbedRegion("Line Items").OracleTextField("Ordered Item_15").Enter val3 end if end if End If Next 'EXIT APP msgbox i loop Browser("Browser").Page("Oracle Applications 11i").Sync Browser("Browser").Close ========================================== It isn't working correctly in my nested loop in STEP B (for ISBN). Any ideas?? Thanks! SBsteve

0 Answers  






hi Sudhananda reddy, in my resume, i written as , I Am working as a Test Engineer for xyz company. IS IT RIGHT OR WRONG? WHAT IS THE ACTUAL meaning of "IN XYZ COMPANY", "FOR XYZ COMPANY", "WITH XYZ COMPANY".

2 Answers  


A FORM CONTAINS 5 FIELDS. 1 FIELD IS ENABLED REMAINING(4) FIELDS DISABLED. MY QUESTION IS ENTER VALUES INTO 1 FIELD AFTER THAT CLICK TAB BUTTON THEN 2 FIELD ENABLE THIS PROCESS CONTINUE UPTO 5TH FIELD. HOW TO WRITE CODE IN DESCRIPTIVE PROGRAMMING. PLZ TELL ME THE PROCEDURE AND CODE FOR IT.

0 Answers   TCS,


What is the life cycle of QTP? Pls Give me Exact answer?

6 Answers   Google,


Analyzing the checpoint results?

0 Answers  


How do you do batch testing in wr & is it possible to do in qtp, if so explain?

0 Answers  


How the exception handling can be done using QTP

6 Answers  


How exactly you start scripting in QTP? In the interview he was not satisfied with my answer.Please post what is correct answer.

2 Answers  


Categories