Exploratory vs. Scripted
http://www.answers.com/topic/exploratory-testing - Exploratory testing
means simultaneous test design and test execution with an
emphasis on learning. Scripted testing means that learning and test
design happen prior to test execution, and quite often the
learning has to be done again during test execution. Exploratory
testing is very common, but in most writing and training about
testing it is barely mentioned and generally misunderstood. Some
writers consider it a primary and essential practice. Structured
exploratory testing is a compromise when the testers are familiar with
the software. A vague test plan, known as a test charter,
is written up, describing what functionalities need to be tested but
not how, allowing the individual testers to choose the
method and steps of testing.
There are two main disadvantages associated with a primarily
exploratory testing approach. The first is that there is no
opportunity to prevent defects, which can happen when the designing of
tests in advance serves as a form of structured static
testing that often reveals problems in system requirements and design.
The second is that, even with test charters, demonstrating
test coverage and achieving repeatability of tests using a purely
exploratory testing approach is difficult. For this reason, a
blended approach of scripted and exploratory testing is often used to
reap the benefits while mitigating each approach's
disadvantages.
|