ISTQB

Loading

Software Testing Tools used by ISTQB certified Experts like Test Analysts and Technical Test Analysts

CTAL (Advanced)
CTAL (Advanced)
Author
master15
Date
2018-09-16 12:34
Views
10073177

Software Testing Tools used by ISTQB certified Experts like Test Analysts and Technical Test Analysts

Many tools for the support of software development are available, and the selection is growing every day.

It is therefore extremely difficult to list down specific tools. Here we are discussing the classification of Nine different types of tools according to the primary users of the tools specifically ISTQB certified software testing experts like Test analysts and technical test analysts.

These nine types of tools being described are as under:

1) Test design tools
2) Test data generation tools
3) Test oracles
4) Simulation and emulation tools
5) Test execution tools
6) Keyword-driven automation tools
7) Comparison tools
8) Fault-seeding and fault-injection tools
9) Web tools

1) Test Design Tools: 
Test design tools support the creation of test specifications. They can analyze a specification of the product, often expressed as a model in a formal way, and generate high-level test cases and possibly test procedures or scripts based on this analysis.

This type of software testing tool can, for example:

# Derive high-level test cases from formally specified requirements, often managed by the same tool

# Generate test cases based on the specification of a model, for example, UML or state machines

# Generate input for test cases based on input models, for example, input distribution specifications

# Derive high-level test cases from actual source code

The test design tools require very formally formatted basis documentation, and that can be regarded as both an advantage and a disadvantage.

2) Test Data Preparation Tools: 
Test input data preparation tools support:

# Selection (e.g., from an existing database)
# Creation
# Generation
# Manipulation
# Editing

of test data for use in setting up preconditions for test procedures and individual test cases.

Some of these tools are data tool-dependent, while some of the sophisticated tools have ability to handle a wide range of the file & database formats.

Test data can be selected and extracted from live data and scrambled to hide person-sensitive information. This enables tests to be performed on real data, something that can be essential for systems in, for example, the public sector.

For example - A test data preparation tool is able to extract live data from the tax authority’s database according to specific selection criteria for test runs of the implementation of a new tax law. The criteria may be 100 families with one income and at least three children, 100 people over 80 years of age with an income over a certain amount, and the 40 people with the highest income in a specific city. The tool scrambles the information that can identify the people in the test data (e.g., Social Security number, before the data may be used).

3) Test Oracles: 
A test oracle is a special concept in test automation; it is used to determine expected results from inputs. Some say that the best test oracle is the tester, studying the test basis documentation and deriving the expected result from this. This is, however, sometimes not possible for time and/or cost reasons. Automated test oracles are tools that can generate the expected result for specific input and hence facilitate the creation of test cases. Such "oracles" are hard to find. In principle they must do exactly the same as the object under testing and may therefore seem redundant.

One of the situations where an oracle can be found and can be very useful is when an old system is being replaced by a new one providing the same functionality. This is seen more and more often when old legacy systems are replaced with systems using new technology, for example, Web access. In such a case test input may be given to the old system and the result be regarded as the expected result for the new system.

Oracles can also be created in situations where nonfunctional requirements can be disregarded and a system simulating the functionality only can be developed at a much lower cost. This is especially the case where the real system has very strict performance requirements.

4) Simulation Tools and Emulation Tools:
Simulation tools are generally deployed for supporting the tests when the desired code or some other systems are not possible or not available or even harmful for use.

Test harnesses and drivers fall into this category of tools. They are used where components or other test objects cannot be executed directly. It can be for testing of a component in isolation, embedded software without a user interface, or execution of many unrelated automated test scripts.

Some testing tools on the market provide harness and driver facilities, especially component testing tools. Very often, however, these tools are homemade and tailored precisely to needs. The principle in stubs and drivers has been explained in the following figure.

A special type of simulators is called emulators because they are used to mimic hardware to which the software under testing interfaces.

Simulation tools are almost always bespoke systems made for a specific assignment.

5) Test Execution Tools:
This type of software testing tool have many popular names like: test execution tools, or test running tools, or capture and replay tools, and is probably the most widespread category of testing tool.

The test execution tools are primarily used for automation of regression testing. They can execute test scripts much faster and more reliably than human beings, and they can therefore reduce test execution time when tests are repeated and/or allow more tests to be executed.

All the tools of this category work according to the same basic principles, namely:

# Capture: A recording of all the tester’s manual actions and the system’s responses into a test script

# Control points: A number of checkpoints added to the script by the tester during the capture

# Playback: Automatic re-execution of the test script

Test execution tools exist for graphical user interface, GUI, and for character-based interfaces. For GUI applications the tools can simulate mouse movement and button clicks and can recognize GUI objects such as windows, fields, buttons, and other controls.

When a script has been captured once, it may be executed at any given time again. If the software under testing reacts differently from what was expected at the inserted checkpoints, the execution will report a failure. It is usually also possible to log information during execution.

Test scripts are captured in a specific scripting language. In newer versions of these tools it has become possible to get access to the scripts that have been captured. These are often in a C or Visual Basic like code, and this offers the possibility for editing the scripts, so that, for example, forgotten operations, further control points, or changed values, may be added.

Experience shows that if the scripts are written from scratch, rather than captured, and good and systematic development principles are used, the scripts will be more maintainable. More and more of these tools are therefore used as test execution tools of coded scripts, rather than capture/playback.

6) Keyword-Driven Automation Tools:
Keyword-driven test is a way to execute test scripts at a higher level of abstraction. The idea is similar to that of a service or subroutine in programming where the same code may be executed with different values.

Keywords are defined to represent a script, and a tool can then act as a link between the keywords and the tool executing the corresponding test script. Values may be assigned for parameters associated with the keywords.

The tools make it possible to use parameter-driven test scripts without having to change the scripts in the execution tool. Keywords are usually related to higher level functionality or business procedures. They may also reflect use cases.

The tools for keyword-driven software testing are also known as script wrappers, because they wrap the technical part of the test (the actual test scripts and the test execution tool) so that the testers only need to know about the high-level keywords.

Keywords may be held in spreadsheets or tables, and longer sequences executions of test scripts can be specified by sequences of keywords. Example of a test sequence defined by keywords in a table is as under.

Keyword

P1

P2

P3

Create customer

Mr.

Sunith

Shakun

Create customer

Ms.

Amman

Bhavna

Find customer

Ms.

Amman

Ritu

Edit customer

, , Gupta

  

Find customer

Mr.

Raja

Sumit

Find customer

Mr.

Rajender

Dev

Delete customer

Yes

  

Keyword-driven test is getting more and more sophisticated, introducing several levels of abstraction between the software testing engineer and the technical test scripts. Test wrapping tools are available commercially and as open-source, but they are also very often homemade and usually quite simple, yet very effective.

Keyword-driven software testing requires a good overview of the test assignment and a high level of abstraction as all parameterization does. This is demanding but can be rewarding for the test in the long run.

7) Comparison Tools:
Comparison tools are used to find differences between the expected and the actual results.

These tools range from very simple comparison facilities, like in Word, for example, to very advanced, dedicated tools. Test execution tools normally have some comparison facility included.

The tools may be able to compare, for example, values in files or on screens, bitmaps, and positions.

8) Fault-Seeding and Fault-Injection Tools:
These types of software testing tools are used to support the defect-based test technique fault-injection or fault seeding.

The tools create or inject faults or defects into the software component under testing. The tools can work either on the source code, changing the code in pre-specified ways, or on the compiled code, changing the structure of the code.

In both cases new versions of the component under test are created with the specified defects.

9) Web Tools:
These days testing never stops. With more and more Web-based products around, we need to constantly monitor that the products are doing well. Products being Web-based means that some issues are out of our hands (for example, hyperlinks and server and network availability). Hyperlink testing tools are used to check that no broken hyperlinks are present on a Web site.

These tools often have additional functionality such as HTML validation, spelling, and availability check. The facility is often built into other tools e.g., HTML development tools.

Monitoring tools are used for Web-based products, most typically e-commerce and e-business applications. The tools monitor the product’s availability to customers and the service level i.e. performance and resource usage. The tools will issue warnings if the monitoring shows that something is not as expected.

Many free Web tools are available for this type of tool. Many web tools are proprietary, and are quite sophisticated as well.

Total 2

  • 2017-03-14 04:32

    nice article


  • 2017-10-30 22:49

    thx


Total 1,270
Number Title Author Date Votes Views
Notice
CTFL (Certified Tester Foundation Level) Syllabus 4.0
admin | 2024.09.15 | Votes 0 | Views 12274
admin 2024.09.15 0 12274
Notice
ISTQB Foundation - Certified Tester (2018) : Official Sample Exam Set 2 with Answer (4)
Testersbest | 2019.06.21 | Votes 0 | Views 9331755
Testersbest 2019.06.21 0 9331755
Notice
ISTQB Foundation - Certified Tester (2018) : Official Sample Exam Set 1 with Answer (3)
Testersbest | 2019.06.21 | Votes 0 | Views 9340192
Testersbest 2019.06.21 0 9340192
Notice
ISTQB Foundation Certified Tester (2018) : New Exam Rule (1)
Testersbest | 2019.06.21 | Votes 0 | Views 9665921
Testersbest 2019.06.21 0 9665921
Notice
ISTQB Foundation - Certified Tester Syllabus (2018)
VTB | 2018.11.14 | Votes 0 | Views 9549417
VTB 2018.11.14 0 9549417
Notice
ISTQB Advanced Level Syllabus (2016) Security Tester
VTB | 2018.10.26 | Votes 0 | Views 9964201
VTB 2018.10.26 0 9964201
Notice
ISTQB Advanced Level Syllabus (2012) Technical Test Analyst
VTB | 2016.05.06 | Votes 0 | Views 9497219
VTB 2016.05.06 0 9497219
Notice
ISTQB Advanced Level Syllabus (2012) Test Manager
VTB | 2016.05.06 | Votes 0 | Views 9801395
VTB 2016.05.06 0 9801395
Notice
ISTQB Advanced Level Syllabus (2012) Test Analyst
VTB | 2016.05.06 | Votes 0 | Views 9350869
VTB 2016.05.06 0 9350869
Notice
ISTQB Glossary of Testing Terms Version:2.2
VTB | 2016.05.06 | Votes 0 | Views 9745321
VTB 2016.05.06 0 9745321
Notice
ISTQB Expert Level (CTEL) Syllabus -Test Management (3)
VTB | 2015.09.13 | Votes 0 | Views 9551659
VTB 2015.09.13 0 9551659
Notice
ISTQB Expert Level (CTEL) Syllabus - Improving the Testing Process (1)
VTB | 2015.09.13 | Votes 0 | Views 9850236
VTB 2015.09.13 0 9850236
Notice
ISTQB Foundation Level (CTFL) Syllabus 2011 (12)
VTB | 2014.10.11 | Votes 0 | Views 9648979
VTB 2014.10.11 0 9648979
1257
ISTQB Question and Answers (Advanced Level)
Steveskok | 2021.02.07 | Votes 0 | Views 9459417
Steveskok 2021.02.07 0 9459417
1256
ISTQB Certified Tester Foundation Level Syllabus Version 2018 V3.1
(TestExpert) | 2020.02.03 | Votes 0 | Views 9516281
(TestExpert) 2020.02.03 0 9516281
1255
ISTQB Advanced - Technical Test Analyst Sample Exam
ItSeTsQtB | 2019.08.08 | Votes 0 | Views 9751962
ItSeTsQtB 2019.08.08 0 9751962
1254
ISTQB Certification and Training Value
^Software^ | 2019.07.22 | Votes 0 | Views 9806602
^Software^ 2019.07.22 0 9806602
1253
ISTQB Foundation - Agile Tester (Sample Exam)
IT-Tester | 2019.07.08 | Votes 0 | Views 9459528
IT-Tester 2019.07.08 0 9459528
1252
ISTQB Advanced - Technical Test Analyst (Sample Exam)
IT-Tester | 2019.07.08 | Votes 0 | Views 9710940
IT-Tester 2019.07.08 0 9710940
1251
ISTQB Advanced - Test Analyst (Sample Exam) (1)
IT-Tester | 2019.07.08 | Votes 0 | Views 9173475
IT-Tester 2019.07.08 0 9173475
1250
Premium Question Paper 4 (3)
iknev | 2019.02.22 | Votes 0 | Views 9675916
iknev 2019.02.22 0 9675916
1249
Premium Question Paper 3 (6)
iknev | 2019.02.22 | Votes 0 | Views 9851521
iknev 2019.02.22 0 9851521
1248
Premium Question Paper 1 (2)
iknev | 2019.02.22 | Votes 0 | Views 9621525
iknev 2019.02.22 0 9621525
1247
ISTQB Question Bank_ Test Manager Sample Question Set 1
iknev | 2019.02.22 | Votes 0 | Views 9394347
iknev 2019.02.22 0 9394347
1246
ISTQB Certified Tester List (FULL)
VTB | 2018.10.31 | Votes 0 | Views 10104844
VTB 2018.10.31 0 10104844
1245
ISTQB Agile Exam (Auckland, NZ)
VTB | 2018.10.28 | Votes 0 | Views 10009173
VTB 2018.10.28 0 10009173
1244
ISTQB Foundation Exam (Auckland, NZ)
VTB | 2018.10.28 | Votes 0 | Views 9422688
VTB 2018.10.28 0 9422688
1243
ISTQB Foundation Course (Auckland, NZ)
VTB | 2018.10.28 | Votes 0 | Views 9779886
VTB 2018.10.28 0 9779886
1242
ISTQB Foundation Agile Course (Auckland, NZ)
VTB | 2018.10.28 | Votes 0 | Views 9807116
VTB 2018.10.28 0 9807116
1241
ISTQB Course + Internship (Auckland, NZ)
VTB | 2018.10.28 | Votes 0 | Views 9625854
VTB 2018.10.28 0 9625854
1240
ISTQB Expert - Improving the Test Process [Sample Exam & Answer] - ISTQB Official
VTB | 2018.10.26 | Votes 0 | Views 9658759
VTB 2018.10.26 0 9658759
1239
ISTQB Expert - Test Manager [Sample Exam & Answer] - ISTQB Official (1)
VTB | 2018.10.26 | Votes 0 | Views 9816457
VTB 2018.10.26 0 9816457
1238
ISTQB Advanced - Technical Test Analyst [Sample Exam & Answer] - ISTQB Official
VTB | 2018.10.26 | Votes 0 | Views 9894533
VTB 2018.10.26 0 9894533
1237
ISTQB Advanced - Test Analyst [Sample Exam & Answer] - ISTQB Official
VTB | 2018.10.26 | Votes 0 | Views 9867859
VTB 2018.10.26 0 9867859
1236
ISTQB Advanced - Test Manager [Sample Exam & Answer] - ISTQB Official (1)
VTB | 2018.10.26 | Votes 0 | Views 9590495
VTB 2018.10.26 0 9590495
1235
ISTQB Foundation - Model Based Tester [Sample Exam & Answers] - ISTQB Official
VTB | 2018.10.26 | Votes 0 | Views 10275367
VTB 2018.10.26 0 10275367
1234
ISTQB Foundation - Agile Tester [Sample Exam & Answer] - ISTQB Official
VTB | 2018.10.26 | Votes 0 | Views 9679440
VTB 2018.10.26 0 9679440
1233
ISTQB Foundation - Certified Tester [Sample Exam & Answer] - ISTQB Official (1)
VTB | 2018.10.26 | Votes 0 | Views 9249868
VTB 2018.10.26 0 9249868
1232
ISTQB Exam Tips and Tricks
VTB | 2018.10.16 | Votes 0 | Views 9652271
VTB 2018.10.16 0 9652271
1231
ISTQB Foundation Level Quiz 20 Questions (1)
aiitistqb | 2018.10.16 | Votes 0 | Views 10208234
aiitistqb 2018.10.16 0 10208234
1230
ISTQB Free Sample Exam and Answers
aiitistqb | 2018.10.16 | Votes 0 | Views 10376831
aiitistqb 2018.10.16 0 10376831
1229
ISTQB Foundation - Agile Extension Online Courses is live!!
VTB | 2018.10.16 | Votes 0 | Views 10087338
VTB 2018.10.16 0 10087338
1228
ISTQB Foundation Online Courses are Live!!
VTB | 2018.10.12 | Votes 0 | Views 9979901
VTB 2018.10.12 0 9979901
1227
ISTQB Foundation (Practice Exam)
VTB | 2018.10.12 | Votes 0 | Views 9538135
VTB 2018.10.12 0 9538135
1226
CTAL TM Questions (23)
ulissesmafra | 2018.10.09 | Votes 1 | Views 9900941
ulissesmafra 2018.10.09 1 9900941
1225
Syllabus 2012 (2)
ulissesmafra | 2018.10.09 | Votes 0 | Views 9743984
ulissesmafra 2018.10.09 0 9743984
1224
ISEB & ISTQB EXAM TIPS (3)
Sky Driver | 2018.09.24 | Votes 0 | Views 9619709
Sky Driver 2018.09.24 0 9619709
1223
Tips for clearing ISTQB Foundation Level Exam (1)
Sky Driver | 2018.09.24 | Votes 0 | Views 9912931
Sky Driver 2018.09.24 0 9912931
1222
Tips for passing the ISTQB Foundation Level exam – Do’s and Don’t’s
Sky Driver | 2018.09.24 | Votes 0 | Views 10038359
Sky Driver 2018.09.24 0 10038359
1221
Why do people fail the ISTQB Foundation Certificate? (1)
Sky Driver | 2018.09.24 | Votes 0 | Views 9497991
Sky Driver 2018.09.24 0 9497991
1220
ISTQB Foundation Mock Exam 2 (3)
peter_hey | 2018.09.19 | Votes 3 | Views 10023416
peter_hey 2018.09.19 3 10023416
1219
ISTQB Foundation Mock Exam 1 (3)
peter_hey | 2018.09.19 | Votes 0 | Views 9692478
peter_hey 2018.09.19 0 9692478
1218
What is ISTQB? (1)
master15 | 2018.09.19 | Votes 0 | Views 9730396
master15 2018.09.19 0 9730396
1217
Syllabus (2)
richp | 2018.09.18 | Votes 0 | Views 9977290
richp 2018.09.18 0 9977290
1216
Learning Objectives for ISTQB Advanced Level Technical Test Analyst Exam (1)
master15 | 2018.09.16 | Votes 0 | Views 9312114
master15 2018.09.16 0 9312114
1215
Software Testing Tools used by ISTQB certified Experts like Test Analysts and Technical Test Analysts (2)
master15 | 2018.09.16 | Votes 0 | Views 10073177
master15 2018.09.16 0 10073177
1214
What are the Advantages of ISTQB Certifications? (1)
master15 | 2018.09.13 | Votes 0 | Views 9900525
master15 2018.09.13 0 9900525
1213
How many Levels of Certification are provided by ISTQB? (1)
master15 | 2018.09.13 | Votes 0 | Views 10050155
master15 2018.09.13 0 10050155
1212
Syllabus CTAL-TTA - [BR] (1)
tcorteletti | 2018.09.09 | Votes 0 | Views 9137986
tcorteletti 2018.09.09 0 9137986
1211
Syllabus CTFL - [BR] (1)
tcorteletti | 2018.09.09 | Votes 0 | Views 9909259
tcorteletti 2018.09.09 0 9909259
1210
ISTQB Certification – Foundation Level syllabus
Sky Driver | 2018.09.05 | Votes 0 | Views 9452642
Sky Driver 2018.09.05 0 9452642
1209
Documents to be submitted at the time of registration of ISTQB Advanced Level (2)
Sky Driver | 2018.09.05 | Votes 0 | Views 9320103
Sky Driver 2018.09.05 0 9320103
1208
The prerequisites for applying for the ISTQB Advanced Level (1)
Sky Driver | 2018.09.05 | Votes 0 | Views 9490795
Sky Driver 2018.09.05 0 9490795