ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
Do you have a collection of Interview Questions and interested to share with us!!
Please send that collection to along with your userid / name. ThanQ
Google
 
Categories  >>  Software  >>  Testing  >>  Automation Testing  >>  QTP
 
 


 

 
 WinRunner interview questions  WinRunner Interview Questions
 Load Runner interview questions  Load Runner Interview Questions
 QTP interview questions  QTP Interview Questions
 Test Director interview questions  Test Director Interview Questions
 Rational TestSuite interview questions  Rational TestSuite Interview Questions
 Silk Test interview questions  Silk Test Interview Questions
 Automation Testing AllOther interview questions  Automation Testing AllOther Interview Questions
Question
Diff. between keyword driven Data driven testing?
 Question Submitted By :: Guest
I also faced this Question!!     Rank Answer Posted By  
 
  Re: Diff. between keyword driven Data driven testing?
Answer
# 1
Keyword Driven Testing: In this testing tester interaction 
is there at time of testing. we can give the values with 
help of 

   Syntax:- Variable = inputbox("String")
       Ex:- a = inputbox("Enter the value for A ")

       In the above example a is the variable it's stores 
the value at the runtime.  and u can use this variable as a 
parameter of any object at runtime.

Data Driven Testing:  In this testing there is no 
interaction of tester.  here we can use datasheets or 
frontend grids as parameters to the application.
     We can get values from data sheets

    Syntax:- variable = datatable("column name","sheet 
name")
        Ex:- empno = datatable
("employee_no","dtGlobalSheet")

          In above example 
                 Empno is variable
                 Employee_no is column name
                 dtGlobalSheet is Sheet name

          we can use these variable in our application as a 
parameter.
 
Is This Answer Correct ?    5 Yes 5 No
Nath .t
 
  Re: Diff. between keyword driven Data driven testing?
Answer
# 2
Keyword Driven Testing: In this testing tester interaction 
is there at time of testing. we can give the values with 
help of 

   Syntax:- Variable = inputbox("String")
       Ex:- a = inputbox("Enter the value for A ")

       In the above example a is the variable it's stores 
the value at the runtime.  and u can use this variable as a 
parameter of any object at runtime.

Data Driven Testing:  In this testing there is no 
interaction of tester.  here we can use datasheets or 
frontend grids as parameters to the application.
     We can get values from data sheets

    Syntax:- variable = datatable("column name","sheet 
name")
        Ex:- empno = datatable
("employee_no","dtGlobalSheet")

          In above example 
                 Empno is variable
                 Employee_no is column name
                 dtGlobalSheet is Sheet name

          we can use these variable in our application as a 
parameter.
 
Is This Answer Correct ?    2 Yes 4 No
Nath .t
 
 
 
  Re: Diff. between keyword driven Data driven testing?
Answer
# 3
Keyword Driven Testing: In this testing tester interaction 
is there at time of testing. we can give the values with 
help of 

   Syntax:- Variable = inputbox("String")
       Ex:- a = inputbox("Enter the value for A ")

       In the above example a is the variable it's stores 
the value at the runtime.  and u can use this variable as a 
parameter of any object at runtime.

Data Driven Testing:  In this testing there is no 
interaction of tester.  here we can use datasheets or 
frontend grids as parameters to the application.
     We can get values from data sheets

    Syntax:- variable = datatable("column name","sheet 
name")
        Ex:- empno = datatable
("employee_no","dtGlobalSheet")

          In above example 
                 Empno is variable
                 Employee_no is column name
                 dtGlobalSheet is Sheet name

          we can use these variable in our application as a 
parameter.
 
Is This Answer Correct ?    1 Yes 3 No
Nath .t
 
  Re: Diff. between keyword driven Data driven testing?
Answer
# 4
Data-driven testing is a methodology used in Test automation
where test scripts are executed and verified based on the
data values stored in one or more central data sources or
databases. These databases can range from datapools, ODBC
sources, csv files, Excel files, DAO objects, ADO objects, etc.

Keyword-driven testing or Table-driven testing is a Software
testing methodology as part of the Test automation
discipline that separates the programming work from the
actual Test script so that the test scripts can be developed
without knowledge of programming. As a result the test
scripts can be maintained with only minor updates, even when
the application or testing requires significant changes.
 
Is This Answer Correct ?    8 Yes 0 No
Raman Verma
 
  Re: Diff. between keyword driven Data driven testing?
Answer
# 5
Keyword-driven testing is a
technique that separates much of the programming work from 
the actual
test steps so that the test steps can be developed earlier 
and can often be
maintained with only minor updates, even when the 
application or testingUsing the keyword-driven approach, 
test automation experts have full access to the underlying 
test and object properties, via an integrated scripting and 
debugging environment that is round-trip synchronized with
the Keyword View.
needs change significantly.
 
Is This Answer Correct ?    0 Yes 2 No
Murthysharma
 
  Re: Diff. between keyword driven Data driven testing?
Answer
# 6
key board DDT is to read values from key board
TSL stmts
create_input_dialog("message");
using for loop 
for(i=1;i<=5;i++)
{
x=create_input_dialog("enter order no");
 
Is This Answer Correct ?    1 Yes 1 No
Sushmita
 
  Re: Diff. between keyword driven Data driven testing?
Answer
# 7
Data driven Testing :
Data driven scripts are those application-specific scripts
captured or manually coded in the automation tool’s
proprietary language and then modified to accommodate
variable data. Variables will be used for key application
input fields and program selections allowing the script to
drive the application with external data supplied by the
calling routine or the shell that invoked the test script.
Keyword driven testing:
These tests are developed as data tables using a keyword
vocabulary that is independent of the test automation tool
used to execute them. This keyword vocabulary should also be
suitable for manual testing.
The data table records contain the keywords that describe
the actions we want to perform. They also provide any
additional data needed as input to the application, and
where appropriate, the benchmark information we use to
verify the state of our components and the application in
general.
Hope this clarifies the difference.
 
Is This Answer Correct ?    0 Yes 0 No
Satish Javalekar
 

 
 
 
Other QTP Interview Questions
 
  Question Asked @ Answers
 
Tell about automation object model(Aom) in qtp? GE6
Can we Run the Tests developed in QTP 8.2 in advanced versions like 9.0, 9.1, 9.2...etc., ADP2
how many scripts r there in QTP? pls any answer this question?  4
How to connect to oracle(sqlserver) database to QTP CTS3
plz explain QTP real time work( Means where you store scripts and how u access scripts next day? where those activities we are maintaining, If By usig VSS how the process in going on , plz explain briefly? CTS2
In what situations QTP will not recognize the Objects? Wipro4
HI ALL, HOW WE INSTALL .NET ADD-IN OR JAVA ADD-IN TO THE QTP? PLZ URGENT.ANSWER ME.  2
Can a function return a dictionary object? Semantic-Space1
What is difference between function and procedure? Wipro15
what is syncurnisation point? what is the use of this in real time environment? plz explain? AppLabs5
Tell me the situations where we will use Data Driven? Ordain-Solutions3
what is qtp automation framework, what is the purpose of the framework and which folders included in this framework pls tell me with brief description PSI-Data-Systems2
What is the difference between "call to action" and "call an existing action" Accenture7
In 1st screen,if v enter a/c no. in one field, the information of the subscriber will be displayed. The details should be displayed only in screen 3(NOTE:details should not display in screen 2).How can v do using QTP. BirlaSoft2
what is qtp automation frame work,what is the use of that frame work? iGate34
WHAT IS THE FRAMEWORK & ARCHITECTURE OF YOUR PROJECT Wipro2
Can you expect major bugs in Net banking Application?  1
How can i open 5 multiple browser at once through QTP VB script and i want to login with 5 different credentials i already tried with this code but its entering credentials only for first browser and am using datatable to parameterize  1
Hi All As per the requirements i have to copy the data from word document to excel sheet using the QTP Note : Data in word document is in tabular format i.e there is 80 rows and 5 columns table Can any body provide code for this ? Thanks in advance Regards Test123Test  1
How to create runtime property for an object?  6
 
For more QTP Interview Questions Click Here 
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com