SlideShare a Scribd company logo
Test Language
                       Introduction to Keyword Driven Testing
                           By: Ayal Zylberman and Aviram Shotten


                    For more Testing Articles Visit: http://SoftwareTestingHelp.com


Introduction
KDT is the next generation test automation approach that separates the task of automated test case
implementation from the automation infrastructure.
Test Language is not a test automation approach. Test Language is a comprehensive test approach that
hands over the responsibility of automation plan, design and execution to the functional testers by using
KDT based solution.

Background
Several years ago, I was a Test Manager for a large organization in the defense industry. The team was
consisted of 10 test engineers, 2 of which were test automation experts and the others were functional
testers. The test automation experts were focused on developing test automation scripts that covered
some of the functional processes of the application.

It took me only few days to realize that things are not efficient.

The same tests that were executed automatically were also tested manually. The functional testers had
low confidence in test automation scripts, since the test automation experts did not have the required
knowledge about the application under test. The test automation development could start only after the
application was ready for testing, and thus was relevant only for small part of the tests (mainly
regression test).

I presented the problem to the team. After many discussions, we came up with the idea of letting the
functional testers create test automation scripts.

The idea may be simple, but we faced a number of challenges in trying to implement it. The main
obstacle was that functional testers did not have programming skills or test automation knowledge. To
solve this, the test automation suggested that the functional testers would create their test cases using
pre-defined words and they will “translate” this into automated scripts. This approach was favorably
accepted by the entire team.

We proceeded to create a Keyword dictionary. The keywords were mutually defined by the automation
experts and functional testers. During the first phase, the functional testers wrote their test cases using
the keywords, and the automation experts translated them into automation scripts. At a later stage, we
developed an automated application that took care of the translation. This enabled the functional testers
to create and execute the automated tests and saved even more time.

The keyword dictionary combined with the automated translation application generated a fast return of
investment. This allowed us to position test automation as a basis of our testing strategy rather than a
luxury.

This was the beginning of Test Language.


Copyright 2010 - http://SoftwareTestingHelp.com - All rights reserved
Test Automation
Let’s review the way Test Automation is commonly approached.

The testing process includes a number of phases test planning, test definition, bug tracking and test
closure activities. The actual test execution phase is often a recursive, repetitive and manual. This phase
usually described as a tedious and boring and can be carried out automatically.

To automate the execution phase, you need to create test automation scripts that are usually
implemented in commercial, test automation tools; such as HP's QTP IBM’s Robot, AutomatedQA's
Test Complete, MS VS 2010 team system and freeware tools such as selenium etc..

Each test automation script represents a test case or complementary steps for manual test cases. The
scripts are created by test automation experts after the completion of the manual test design.

Contrary what test-tool vendors would have you believe, Test automation is expensive. It does not
replace the need for manual testing or enable you to "down-size" your testing department.

Automated testing is an addition to your testing process. According to Cem Kaner, "Improving the
Maintainability of Automated Test Suites", it can take between 3 to 10 times longer to develop, verify,
and document an automated test case than to create and execute a manual test case. This is especially
true if you elect to use the "record/playback" feature (contained in most test tools, as your primary
automated testing methodology.

Sanity check: Measure the success of your Testing Automation project.
Step 1: Measure how many man hours were invested in test automation in the past 6 months (include
Test Automation experts, functional testers, management overhead etc.). Mark this as A.
Step 2: Measure how many working hours would have needed in order to manually execute all tests that
were executed automatically in the past 6 month. Mark this as B.

           If A > B than most likely your Test Automation project is a failure candidate.



Why Do Test Automation Projects Fail?
These are the common reasons for test automation failures:
   1. Process – Test Automation requires changes in the Test process. The changes apply to the
            a. Test Design approaches - Test Automation requires more specific design.
            b. Test Coverage - Test Automation allows more scenarios to be tested on a specific
                 function.
            c. Test Execution - functions in the application that are tested automatically shouldn’t be
                 tested manually.
        Many organizations fail to plan or implement the required changes.
   2. Maintenance – Automated tests requires both functional maintenance (updating the scripts
        after a functional change in the AUT) and technical maintenance (i.e. - AUT UI changed from
        MFC to C#).
   3. Expertise – In order to write an efficient automated test, test automation experts are required to
        be a techno-geek version of superman – good test engineers, system experts and great SW
        developers.



Copyright 2010 - http://SoftwareTestingHelp.com - All rights reserved
Obviously a different approach is required to make test automation work.

What is Test Language?
Test Language is a dictionary of keywords that helps testers to communicate with each other and with
other Subject-Matter experts. The keywords replace the common English or as the basis and create an
approach called keyword driven testing (KDT).
KDT can be used to achieve a number of goals:
    - Improve communication between testers
    - Avoid inconsistency in test documents
    - Serve as the infrastructure for Test Automation based on Keyword Driven Testing.

Test Language Structure
The Test Language is based on a dictionary, which is comprised of words (keywords) and parameters.

Test Cases
A Test Case is a sequence of steps that tests the behavior of a given functionality/ feature in an
application. Unlike traditional test approaches, Test Language uses pre-defined keywords to describe
the steps and expected results (see example in Figure 2 below)

The Keywords
Keywords are the basic functional sub-procedures for the test cases of the application under test. A test
case is comprised of at least one keyword.

Types of Keywords

Item Operation (Item) – an action that performs a specific operation on a given GUI component. For
example set value "Larry Swartz" in "customer name" control, verify that the value "3" appears in
"result" field. When performing an operation on a GUI item, the following parameters should be
specified: Name of GUI item, what operation to perform and the values.

Utility Functions (Function) – a script that executes a certain functional operation that is hard non-
effective to implement as a Sequence. For example: wait X seconds, retrieve data from DB etc.

Sequence – a set of keywords that produces a business process, such as “create customer”. We
recommend collecting frequently used functional processes such as login, addition of new records to the
system as a sequence instead of implementing them as items in test cases.




Copyright 2010 - http://SoftwareTestingHelp.com - All rights reserved
Parameters
In most cases, parameters should be defined for the created keywords. The parameters are additional
information required in order to generate the test conditions. For example: failed authentication by
passing username with illegal password, number for mathematical calculation, etc.
Examples for sequence parameters:




When the user wants to create a new customer, the following syntax is used:
create_custmer ( Bob,Dylan,1/1/2000,bobdylan@gmail.com)

Using default parameters
Some of the keywords may contain dozens of parameters. In order to simplify the test creation, all
parameters should contain default values. The tester should be able to change each one of the default
parameters according to the context of the test. For example, if the tester would like to create new
customer that is older the 100 years, only the birth date will be changed and all other parameters will
remain the same. Obviously, a specific change will not affect the default parameters being used for
other tests.




                                       Figure 1: Login sequence




                                 Figure 2 – Create Patient Test Case

      It is extremely important to plan the keywords well and to optimize the amount of keywords by
     creating multi-function keywords (for example, creating "Change_customer_status" keyword is a
   better approach than creating 2 special keywords for "activate_customer" and "deactivate_customer")




Copyright 2010 - http://SoftwareTestingHelp.com - All rights reserved
Keyword Driven Testing (KDT)
KDT is the mechanism used in order to implement test language.
Keyword Driven Testing can be divided into two main layers:
Infrastructure Layer (KDT Engine), a combination of Item Operation, Utility Functions and User
Defined Functions (also called Sequence), used as an “engine” that receives inputs (keywords) and
performs operations on the application under test.
Logical Layer (KDT Test Case) - used by manual testers and other subject matter experts to build and
execute test scripts by using a pre-defined keyword.

KDT Principles
Simplicity of test case implementation and reviewing
Functional testers should create the automated test cases directly in a simple non-code elite language.
This eliminates the need for the time consuming two steps process in which testers create manual test
cases and then converting them to automated scripts by the test automation team.
Automation Infrastructure and Test Cases Coexistence
The test automation infrastructure should be separated from the logical layer which is the test cases).
This allows testers to create automated test cases at an early stage in the development life-cycle before
the application is ready and even before the automation infrastructure is developed.
Plan and control
In order to maximize the benefit from KDT, a plan used to assess the on-going effectiveness of the
automation program.

What to Automate
Test Language should focus on testing new features rather than on regression testing, which is the
common practice in traditional test automation

In traditional test automation implementations automation scripts cannot be created before the
application is ready for testing. As a result, sanity and regression tests are the main areas, which are
automated. This approach usually leads to parallel executions (both manually and automatically) of the
same tests.

In addition, tests, written for manual execution, are phrased in a way that does not take into account the
strengths of automation scripting. The main gap between the two approaches is:
    • Detail level: Test Automation requires more details (for example, after log in, the automated
         script should define what is expected to happened while in many manual scripts, this is left for
         the tester intuition).
    • Coverage: When performing test automation, more test cases can be created. For example:
         when testing a certain numeric field that get values in the range of 1-10, usually boundary
         analysis technique will be used to test the following numbers: 1, 2 , 10 and 11 while when
         running automated tests, more scenarios can be planned.

KDT allows functional testers to plan test automation before the application is ready. This enables
organizations to broaden the automated testing spectrum.

We recommend that new tests rather than translation of existing tests should be the focus of automated
testing using KDT. All new tests can be planned using the KDT approach. We believe that this
approach ease the KDT implementation process and greatly improve automated testing ROI.




Copyright 2010 - http://SoftwareTestingHelp.com - All rights reserved
Organization Structure and Responsibilities
 The organizational structure of KDT based organization is similar to traditional test automation based
 organizations. It is consisted of Core Test Automation teams and Functional Testers. However the
 responsibilities are much different:


                         Automation Functional
Activity                                       Notes
                           Experts   Testers
                                                       Keywords should be defined by functional
Define Keywords                               +        testers under the supervision and control
                                                       of the Test Automation Experts
Develop Utility
                               +
Functions
                                                       Sequences are developed by functional
Develop Sequences
                                                       testers in small scales organizations and
(User defined                  +              +
                                                       for private use (functions that will not be
functions)
                                                       used by other testers).
Develop Test Cases                            +
Execute Test Cases                            +
                                Figure 3: KDT Responsibilities Matrix


 KDT Process
 The key factor of fully use the benefit of Keyword Driven approach is by fully integrate it throughout
 the entire test process.
 The following diagram shows the KDT process:




                              Figure 4: Keyword Driven Testing Process




 Copyright 2010 - http://SoftwareTestingHelp.com - All rights reserved
About Authors - Professional History and Credentials:
Ayal Zylberman is a senior Software Test Specialist and QualiTest Group co-founder. He has been in
the field of Software Testing since 1995 testing several disciplines such as Military systems, Billing
systems, SAP, RT, NMS, Networking and Telephony. He was one of the first in Israel to implement
automated testing tools and is recognized as one of the top level experts in this field worldwide. Ayal
was involved in Test Automation activities in more than 50 companies. During his career, He published
more than 10 professional articles worldwide and is a highly requested lecturer in Israeli and
international conferences.
Aviram Shotten is QualiTest’s KDT supporting suite, the "Automation Planner®" program manager
and a senior test manager, responsible for over 80 test engineers in over 25 projects among them more
than 10 have successfully implemented KDT automation via the Automation Planner®




                             http://SoftwareTestingHelp.com
For more Testing Articles visit:
Testing Jobs: http://.softwaretestinghelp.com/jobs/
Testing Free Downloads: http://www.softwaretestinghelp.com/resources/




Copyright 2010 - http://SoftwareTestingHelp.com - All rights reserved

More Related Content

PPT
Automation test scripting guidelines
PPT
Test automation principles, terminologies and implementations
PPTX
Test automation framework
PDF
Testing Experience - Evolution of Test Automation Frameworks
PPT
Automation Framework/QTP Framework
PDF
Automation testing introduction for FujiNet
PPTX
Introduction to Automation Testing
PDF
Scrum gathering Paris 2013 - test automation strategy for Scrum Projects
Automation test scripting guidelines
Test automation principles, terminologies and implementations
Test automation framework
Testing Experience - Evolution of Test Automation Frameworks
Automation Framework/QTP Framework
Automation testing introduction for FujiNet
Introduction to Automation Testing
Scrum gathering Paris 2013 - test automation strategy for Scrum Projects

What's hot (20)

PDF
Test Automation
PPT
Test Automation Best Practices (with SOA test approach)
PPTX
Learning's from mobile testing
PPTX
A Test Automation Framework
PPTX
Keyword-driven Test Automation Framework
PDF
Test Automation Strategies in a Continuous Delivery Ecosystem
PPS
Final Automation Testing
PDF
Testing Tool Evaluation Criteria
PPTX
Selenium Tutorial for Beginners | Automation framework Basics
PPTX
Manual Vs Automation Testing
PDF
Test automation methodologies
PPT
Programming skills for test automation
DOC
Manual Testing.
PDF
Engaging IV&V Testing Services for Agile Projects
PDF
Testing Tools
PPT
Guideto Successful Application Test Automation
PDF
Test Automation Strategy
PPTX
Software test automation_overview
PDF
Developing a test automation strategy by Brian Bayer
PDF
Automated Testing
Test Automation
Test Automation Best Practices (with SOA test approach)
Learning's from mobile testing
A Test Automation Framework
Keyword-driven Test Automation Framework
Test Automation Strategies in a Continuous Delivery Ecosystem
Final Automation Testing
Testing Tool Evaluation Criteria
Selenium Tutorial for Beginners | Automation framework Basics
Manual Vs Automation Testing
Test automation methodologies
Programming skills for test automation
Manual Testing.
Engaging IV&V Testing Services for Agile Projects
Testing Tools
Guideto Successful Application Test Automation
Test Automation Strategy
Software test automation_overview
Developing a test automation strategy by Brian Bayer
Automated Testing
Ad

Viewers also liked (17)

PPT
TMFI Introductie
PPT
HPV infection and anal dysplasia in Vancouver: findings from the ManCount Survey.
PPT
Notes from Inside: Addressing barriers to Gay Poz Men's Self-Actualization
PPTX
Engaging Physicians Project
PPT
Exploring the Promise of Intersectionality* for Gay Men's Health
POTX
Aging Better with HIV: Current Psychosocial Issues for Gay Men
PPT
Overview Kevin AC Mobil
PPT
Bernhardt Standing Out
PPT
Flame
PPT
Llibertat
PPT
HPV: What is it? What does it do?
PPS
Somerul
PPT
Presentation
PPS
PPS
Paradoxul(Paler)
PPT
Alumwire Platform
PPT
TIENS Opportunity Preview
TMFI Introductie
HPV infection and anal dysplasia in Vancouver: findings from the ManCount Survey.
Notes from Inside: Addressing barriers to Gay Poz Men's Self-Actualization
Engaging Physicians Project
Exploring the Promise of Intersectionality* for Gay Men's Health
Aging Better with HIV: Current Psychosocial Issues for Gay Men
Overview Kevin AC Mobil
Bernhardt Standing Out
Flame
Llibertat
HPV: What is it? What does it do?
Somerul
Presentation
Paradoxul(Paler)
Alumwire Platform
TIENS Opportunity Preview
Ad

Similar to Keyword Driven Testing (20)

PPT
M. Holovaty, Концепции автоматизированного тестирования
PPTX
Unit -V 19CS408T - Software Testing Notes
PPTX
Introduction to Automation Testing
PDF
Front Cover:
PDF
Front Cover:
PDF
Front Cover:
PPTX
Automation Best Practices.pptx
PDF
Software Test Automation - Best Practices
PPT
Automation testing
PPTX
Chapter 6 - Test Tools and Automation
PPTX
Automation Testing with Test Complete
PDF
Getting Started With QA Automation
PDF
Evolution of Test Automation
PDF
Introduction to Total Data Driven Test Automation
PDF
Improving ROI with Scriptless Test Automation
PPT
Automation Concepts
PDF
BX-D – A Business Component & XML Driven Test Automation Framework
PDF
Test Automation Frameworks- The Complete Guide.pdf
PPTX
The Importance of Performance Testing Theory and Practice - QueBIT Consulting...
PDF
Automation Testing of Web based Application with Selenium and HP UFT (QTP)
M. Holovaty, Концепции автоматизированного тестирования
Unit -V 19CS408T - Software Testing Notes
Introduction to Automation Testing
Front Cover:
Front Cover:
Front Cover:
Automation Best Practices.pptx
Software Test Automation - Best Practices
Automation testing
Chapter 6 - Test Tools and Automation
Automation Testing with Test Complete
Getting Started With QA Automation
Evolution of Test Automation
Introduction to Total Data Driven Test Automation
Improving ROI with Scriptless Test Automation
Automation Concepts
BX-D – A Business Component & XML Driven Test Automation Framework
Test Automation Frameworks- The Complete Guide.pdf
The Importance of Performance Testing Theory and Practice - QueBIT Consulting...
Automation Testing of Web based Application with Selenium and HP UFT (QTP)

Keyword Driven Testing

  • 1. Test Language Introduction to Keyword Driven Testing By: Ayal Zylberman and Aviram Shotten For more Testing Articles Visit: http://SoftwareTestingHelp.com Introduction KDT is the next generation test automation approach that separates the task of automated test case implementation from the automation infrastructure. Test Language is not a test automation approach. Test Language is a comprehensive test approach that hands over the responsibility of automation plan, design and execution to the functional testers by using KDT based solution. Background Several years ago, I was a Test Manager for a large organization in the defense industry. The team was consisted of 10 test engineers, 2 of which were test automation experts and the others were functional testers. The test automation experts were focused on developing test automation scripts that covered some of the functional processes of the application. It took me only few days to realize that things are not efficient. The same tests that were executed automatically were also tested manually. The functional testers had low confidence in test automation scripts, since the test automation experts did not have the required knowledge about the application under test. The test automation development could start only after the application was ready for testing, and thus was relevant only for small part of the tests (mainly regression test). I presented the problem to the team. After many discussions, we came up with the idea of letting the functional testers create test automation scripts. The idea may be simple, but we faced a number of challenges in trying to implement it. The main obstacle was that functional testers did not have programming skills or test automation knowledge. To solve this, the test automation suggested that the functional testers would create their test cases using pre-defined words and they will “translate” this into automated scripts. This approach was favorably accepted by the entire team. We proceeded to create a Keyword dictionary. The keywords were mutually defined by the automation experts and functional testers. During the first phase, the functional testers wrote their test cases using the keywords, and the automation experts translated them into automation scripts. At a later stage, we developed an automated application that took care of the translation. This enabled the functional testers to create and execute the automated tests and saved even more time. The keyword dictionary combined with the automated translation application generated a fast return of investment. This allowed us to position test automation as a basis of our testing strategy rather than a luxury. This was the beginning of Test Language. Copyright 2010 - http://SoftwareTestingHelp.com - All rights reserved
  • 2. Test Automation Let’s review the way Test Automation is commonly approached. The testing process includes a number of phases test planning, test definition, bug tracking and test closure activities. The actual test execution phase is often a recursive, repetitive and manual. This phase usually described as a tedious and boring and can be carried out automatically. To automate the execution phase, you need to create test automation scripts that are usually implemented in commercial, test automation tools; such as HP's QTP IBM’s Robot, AutomatedQA's Test Complete, MS VS 2010 team system and freeware tools such as selenium etc.. Each test automation script represents a test case or complementary steps for manual test cases. The scripts are created by test automation experts after the completion of the manual test design. Contrary what test-tool vendors would have you believe, Test automation is expensive. It does not replace the need for manual testing or enable you to "down-size" your testing department. Automated testing is an addition to your testing process. According to Cem Kaner, "Improving the Maintainability of Automated Test Suites", it can take between 3 to 10 times longer to develop, verify, and document an automated test case than to create and execute a manual test case. This is especially true if you elect to use the "record/playback" feature (contained in most test tools, as your primary automated testing methodology. Sanity check: Measure the success of your Testing Automation project. Step 1: Measure how many man hours were invested in test automation in the past 6 months (include Test Automation experts, functional testers, management overhead etc.). Mark this as A. Step 2: Measure how many working hours would have needed in order to manually execute all tests that were executed automatically in the past 6 month. Mark this as B. If A > B than most likely your Test Automation project is a failure candidate. Why Do Test Automation Projects Fail? These are the common reasons for test automation failures: 1. Process – Test Automation requires changes in the Test process. The changes apply to the a. Test Design approaches - Test Automation requires more specific design. b. Test Coverage - Test Automation allows more scenarios to be tested on a specific function. c. Test Execution - functions in the application that are tested automatically shouldn’t be tested manually. Many organizations fail to plan or implement the required changes. 2. Maintenance – Automated tests requires both functional maintenance (updating the scripts after a functional change in the AUT) and technical maintenance (i.e. - AUT UI changed from MFC to C#). 3. Expertise – In order to write an efficient automated test, test automation experts are required to be a techno-geek version of superman – good test engineers, system experts and great SW developers. Copyright 2010 - http://SoftwareTestingHelp.com - All rights reserved
  • 3. Obviously a different approach is required to make test automation work. What is Test Language? Test Language is a dictionary of keywords that helps testers to communicate with each other and with other Subject-Matter experts. The keywords replace the common English or as the basis and create an approach called keyword driven testing (KDT). KDT can be used to achieve a number of goals: - Improve communication between testers - Avoid inconsistency in test documents - Serve as the infrastructure for Test Automation based on Keyword Driven Testing. Test Language Structure The Test Language is based on a dictionary, which is comprised of words (keywords) and parameters. Test Cases A Test Case is a sequence of steps that tests the behavior of a given functionality/ feature in an application. Unlike traditional test approaches, Test Language uses pre-defined keywords to describe the steps and expected results (see example in Figure 2 below) The Keywords Keywords are the basic functional sub-procedures for the test cases of the application under test. A test case is comprised of at least one keyword. Types of Keywords Item Operation (Item) – an action that performs a specific operation on a given GUI component. For example set value "Larry Swartz" in "customer name" control, verify that the value "3" appears in "result" field. When performing an operation on a GUI item, the following parameters should be specified: Name of GUI item, what operation to perform and the values. Utility Functions (Function) – a script that executes a certain functional operation that is hard non- effective to implement as a Sequence. For example: wait X seconds, retrieve data from DB etc. Sequence – a set of keywords that produces a business process, such as “create customer”. We recommend collecting frequently used functional processes such as login, addition of new records to the system as a sequence instead of implementing them as items in test cases. Copyright 2010 - http://SoftwareTestingHelp.com - All rights reserved
  • 4. Parameters In most cases, parameters should be defined for the created keywords. The parameters are additional information required in order to generate the test conditions. For example: failed authentication by passing username with illegal password, number for mathematical calculation, etc. Examples for sequence parameters: When the user wants to create a new customer, the following syntax is used: create_custmer ( Bob,Dylan,1/1/2000,bobdylan@gmail.com) Using default parameters Some of the keywords may contain dozens of parameters. In order to simplify the test creation, all parameters should contain default values. The tester should be able to change each one of the default parameters according to the context of the test. For example, if the tester would like to create new customer that is older the 100 years, only the birth date will be changed and all other parameters will remain the same. Obviously, a specific change will not affect the default parameters being used for other tests. Figure 1: Login sequence Figure 2 – Create Patient Test Case It is extremely important to plan the keywords well and to optimize the amount of keywords by creating multi-function keywords (for example, creating "Change_customer_status" keyword is a better approach than creating 2 special keywords for "activate_customer" and "deactivate_customer") Copyright 2010 - http://SoftwareTestingHelp.com - All rights reserved
  • 5. Keyword Driven Testing (KDT) KDT is the mechanism used in order to implement test language. Keyword Driven Testing can be divided into two main layers: Infrastructure Layer (KDT Engine), a combination of Item Operation, Utility Functions and User Defined Functions (also called Sequence), used as an “engine” that receives inputs (keywords) and performs operations on the application under test. Logical Layer (KDT Test Case) - used by manual testers and other subject matter experts to build and execute test scripts by using a pre-defined keyword. KDT Principles Simplicity of test case implementation and reviewing Functional testers should create the automated test cases directly in a simple non-code elite language. This eliminates the need for the time consuming two steps process in which testers create manual test cases and then converting them to automated scripts by the test automation team. Automation Infrastructure and Test Cases Coexistence The test automation infrastructure should be separated from the logical layer which is the test cases). This allows testers to create automated test cases at an early stage in the development life-cycle before the application is ready and even before the automation infrastructure is developed. Plan and control In order to maximize the benefit from KDT, a plan used to assess the on-going effectiveness of the automation program. What to Automate Test Language should focus on testing new features rather than on regression testing, which is the common practice in traditional test automation In traditional test automation implementations automation scripts cannot be created before the application is ready for testing. As a result, sanity and regression tests are the main areas, which are automated. This approach usually leads to parallel executions (both manually and automatically) of the same tests. In addition, tests, written for manual execution, are phrased in a way that does not take into account the strengths of automation scripting. The main gap between the two approaches is: • Detail level: Test Automation requires more details (for example, after log in, the automated script should define what is expected to happened while in many manual scripts, this is left for the tester intuition). • Coverage: When performing test automation, more test cases can be created. For example: when testing a certain numeric field that get values in the range of 1-10, usually boundary analysis technique will be used to test the following numbers: 1, 2 , 10 and 11 while when running automated tests, more scenarios can be planned. KDT allows functional testers to plan test automation before the application is ready. This enables organizations to broaden the automated testing spectrum. We recommend that new tests rather than translation of existing tests should be the focus of automated testing using KDT. All new tests can be planned using the KDT approach. We believe that this approach ease the KDT implementation process and greatly improve automated testing ROI. Copyright 2010 - http://SoftwareTestingHelp.com - All rights reserved
  • 6. Organization Structure and Responsibilities The organizational structure of KDT based organization is similar to traditional test automation based organizations. It is consisted of Core Test Automation teams and Functional Testers. However the responsibilities are much different: Automation Functional Activity Notes Experts Testers Keywords should be defined by functional Define Keywords + testers under the supervision and control of the Test Automation Experts Develop Utility + Functions Sequences are developed by functional Develop Sequences testers in small scales organizations and (User defined + + for private use (functions that will not be functions) used by other testers). Develop Test Cases + Execute Test Cases + Figure 3: KDT Responsibilities Matrix KDT Process The key factor of fully use the benefit of Keyword Driven approach is by fully integrate it throughout the entire test process. The following diagram shows the KDT process: Figure 4: Keyword Driven Testing Process Copyright 2010 - http://SoftwareTestingHelp.com - All rights reserved
  • 7. About Authors - Professional History and Credentials: Ayal Zylberman is a senior Software Test Specialist and QualiTest Group co-founder. He has been in the field of Software Testing since 1995 testing several disciplines such as Military systems, Billing systems, SAP, RT, NMS, Networking and Telephony. He was one of the first in Israel to implement automated testing tools and is recognized as one of the top level experts in this field worldwide. Ayal was involved in Test Automation activities in more than 50 companies. During his career, He published more than 10 professional articles worldwide and is a highly requested lecturer in Israeli and international conferences. Aviram Shotten is QualiTest’s KDT supporting suite, the "Automation Planner®" program manager and a senior test manager, responsible for over 80 test engineers in over 25 projects among them more than 10 have successfully implemented KDT automation via the Automation Planner® http://SoftwareTestingHelp.com For more Testing Articles visit: Testing Jobs: http://.softwaretestinghelp.com/jobs/ Testing Free Downloads: http://www.softwaretestinghelp.com/resources/ Copyright 2010 - http://SoftwareTestingHelp.com - All rights reserved