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
17416320

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 6831873
admin 2024.09.15 0 6831873
Notice
ISTQB Foundation - Certified Tester (2018) : Official Sample Exam Set 2 with Answer (4)
Testersbest | 2019.06.21 | Votes 0 | Views 16149061
Testersbest 2019.06.21 0 16149061
Notice
ISTQB Foundation - Certified Tester (2018) : Official Sample Exam Set 1 with Answer (3)
Testersbest | 2019.06.21 | Votes 0 | Views 16540269
Testersbest 2019.06.21 0 16540269
Notice
ISTQB Foundation Certified Tester (2018) : New Exam Rule (1)
Testersbest | 2019.06.21 | Votes 0 | Views 16709746
Testersbest 2019.06.21 0 16709746
Notice
ISTQB Foundation - Certified Tester Syllabus (2018)
VTB | 2018.11.14 | Votes 0 | Views 16809027
VTB 2018.11.14 0 16809027
Notice
ISTQB Advanced Level Syllabus (2016) Security Tester
VTB | 2018.10.26 | Votes 0 | Views 17073200
VTB 2018.10.26 0 17073200
Notice
ISTQB Advanced Level Syllabus (2012) Technical Test Analyst
VTB | 2016.05.06 | Votes 0 | Views 16533583
VTB 2016.05.06 0 16533583
Notice
ISTQB Advanced Level Syllabus (2012) Test Manager
VTB | 2016.05.06 | Votes 0 | Views 16730446
VTB 2016.05.06 0 16730446
Notice
ISTQB Advanced Level Syllabus (2012) Test Analyst
VTB | 2016.05.06 | Votes 0 | Views 16664967
VTB 2016.05.06 0 16664967
Notice
ISTQB Glossary of Testing Terms Version:2.2
VTB | 2016.05.06 | Votes 0 | Views 16424907
VTB 2016.05.06 0 16424907
Notice
ISTQB Expert Level (CTEL) Syllabus -Test Management (3)
VTB | 2015.09.13 | Votes 0 | Views 16380963
VTB 2015.09.13 0 16380963
Notice
ISTQB Expert Level (CTEL) Syllabus - Improving the Testing Process (1)
VTB | 2015.09.13 | Votes 0 | Views 16860966
VTB 2015.09.13 0 16860966
Notice
ISTQB Foundation Level (CTFL) Syllabus 2011 (12)
VTB | 2014.10.11 | Votes 0 | Views 16265010
VTB 2014.10.11 0 16265010
1257
ISTQB Question and Answers (Advanced Level)
Steveskok | 2021.02.07 | Votes 0 | Views 16259826
Steveskok 2021.02.07 0 16259826
1256
ISTQB Certified Tester Foundation Level Syllabus Version 2018 V3.1
(TestExpert) | 2020.02.03 | Votes 0 | Views 16320967
(TestExpert) 2020.02.03 0 16320967
1255
ISTQB Advanced - Technical Test Analyst Sample Exam
ItSeTsQtB | 2019.08.08 | Votes 0 | Views 17171817
ItSeTsQtB 2019.08.08 0 17171817
1254
ISTQB Certification and Training Value
^Software^ | 2019.07.22 | Votes 0 | Views 16923950
^Software^ 2019.07.22 0 16923950
1253
ISTQB Foundation - Agile Tester (Sample Exam)
IT-Tester | 2019.07.08 | Votes 0 | Views 16393353
IT-Tester 2019.07.08 0 16393353
1252
ISTQB Advanced - Technical Test Analyst (Sample Exam)
IT-Tester | 2019.07.08 | Votes 0 | Views 17011414
IT-Tester 2019.07.08 0 17011414
1251
ISTQB Advanced - Test Analyst (Sample Exam) (1)
IT-Tester | 2019.07.08 | Votes 0 | Views 16086820
IT-Tester 2019.07.08 0 16086820
1250
Premium Question Paper 4 (3)
iknev | 2019.02.22 | Votes 0 | Views 16736985
iknev 2019.02.22 0 16736985
1249
Premium Question Paper 3 (6)
iknev | 2019.02.22 | Votes 0 | Views 16783029
iknev 2019.02.22 0 16783029
1248
Premium Question Paper 1 (2)
iknev | 2019.02.22 | Votes 0 | Views 16520950
iknev 2019.02.22 0 16520950
1247
ISTQB Question Bank_ Test Manager Sample Question Set 1
iknev | 2019.02.22 | Votes 0 | Views 16510711
iknev 2019.02.22 0 16510711
1246
ISTQB Certified Tester List (FULL)
VTB | 2018.10.31 | Votes 0 | Views 17020242
VTB 2018.10.31 0 17020242
1245
ISTQB Agile Exam (Auckland, NZ)
VTB | 2018.10.28 | Votes 0 | Views 17297431
VTB 2018.10.28 0 17297431
1244
ISTQB Foundation Exam (Auckland, NZ)
VTB | 2018.10.28 | Votes 0 | Views 16496041
VTB 2018.10.28 0 16496041
1243
ISTQB Foundation Course (Auckland, NZ)
VTB | 2018.10.28 | Votes 0 | Views 16601402
VTB 2018.10.28 0 16601402
1242
ISTQB Foundation Agile Course (Auckland, NZ)
VTB | 2018.10.28 | Votes 0 | Views 16826816
VTB 2018.10.28 0 16826816
1241
ISTQB Course + Internship (Auckland, NZ)
VTB | 2018.10.28 | Votes 0 | Views 16750745
VTB 2018.10.28 0 16750745
1240
ISTQB Expert - Improving the Test Process [Sample Exam & Answer] - ISTQB Official
VTB | 2018.10.26 | Votes 0 | Views 16257125
VTB 2018.10.26 0 16257125
1239
ISTQB Expert - Test Manager [Sample Exam & Answer] - ISTQB Official (1)
VTB | 2018.10.26 | Votes 0 | Views 16708469
VTB 2018.10.26 0 16708469
1238
ISTQB Advanced - Technical Test Analyst [Sample Exam & Answer] - ISTQB Official
VTB | 2018.10.26 | Votes 0 | Views 16719828
VTB 2018.10.26 0 16719828
1237
ISTQB Advanced - Test Analyst [Sample Exam & Answer] - ISTQB Official
VTB | 2018.10.26 | Votes 0 | Views 17338673
VTB 2018.10.26 0 17338673
1236
ISTQB Advanced - Test Manager [Sample Exam & Answer] - ISTQB Official (1)
VTB | 2018.10.26 | Votes 0 | Views 16205146
VTB 2018.10.26 0 16205146
1235
ISTQB Foundation - Model Based Tester [Sample Exam & Answers] - ISTQB Official
VTB | 2018.10.26 | Votes 0 | Views 17369244
VTB 2018.10.26 0 17369244
1234
ISTQB Foundation - Agile Tester [Sample Exam & Answer] - ISTQB Official
VTB | 2018.10.26 | Votes 0 | Views 16341201
VTB 2018.10.26 0 16341201
1233
ISTQB Foundation - Certified Tester [Sample Exam & Answer] - ISTQB Official (1)
VTB | 2018.10.26 | Votes 0 | Views 16393797
VTB 2018.10.26 0 16393797
1232
ISTQB Exam Tips and Tricks
VTB | 2018.10.16 | Votes 0 | Views 16660426
VTB 2018.10.16 0 16660426
1231
ISTQB Foundation Level Quiz 20 Questions (1)
aiitistqb | 2018.10.16 | Votes 0 | Views 17526702
aiitistqb 2018.10.16 0 17526702
1230
ISTQB Free Sample Exam and Answers
aiitistqb | 2018.10.16 | Votes 0 | Views 17026396
aiitistqb 2018.10.16 0 17026396
1229
ISTQB Foundation - Agile Extension Online Courses is live!!
VTB | 2018.10.16 | Votes 0 | Views 16752202
VTB 2018.10.16 0 16752202
1228
ISTQB Foundation Online Courses are Live!!
VTB | 2018.10.12 | Votes 0 | Views 17204999
VTB 2018.10.12 0 17204999
1227
ISTQB Foundation (Practice Exam)
VTB | 2018.10.12 | Votes 0 | Views 16217570
VTB 2018.10.12 0 16217570
1226
CTAL TM Questions (23)
ulissesmafra | 2018.10.09 | Votes 1 | Views 16933180
ulissesmafra 2018.10.09 1 16933180
1225
Syllabus 2012 (2)
ulissesmafra | 2018.10.09 | Votes 0 | Views 16254284
ulissesmafra 2018.10.09 0 16254284
1224
ISEB & ISTQB EXAM TIPS (3)
Sky Driver | 2018.09.24 | Votes 0 | Views 16350475
Sky Driver 2018.09.24 0 16350475
1223
Tips for clearing ISTQB Foundation Level Exam (1)
Sky Driver | 2018.09.24 | Votes 0 | Views 17196778
Sky Driver 2018.09.24 0 17196778
1222
Tips for passing the ISTQB Foundation Level exam – Do’s and Don’t’s
Sky Driver | 2018.09.24 | Votes 0 | Views 17359439
Sky Driver 2018.09.24 0 17359439
1221
Why do people fail the ISTQB Foundation Certificate? (1)
Sky Driver | 2018.09.24 | Votes 0 | Views 16682769
Sky Driver 2018.09.24 0 16682769
1220
ISTQB Foundation Mock Exam 2 (3)
peter_hey | 2018.09.19 | Votes 3 | Views 17007237
peter_hey 2018.09.19 3 17007237
1219
ISTQB Foundation Mock Exam 1 (3)
peter_hey | 2018.09.19 | Votes 0 | Views 16541916
peter_hey 2018.09.19 0 16541916
1218
What is ISTQB? (1)
master15 | 2018.09.19 | Votes 0 | Views 16434760
master15 2018.09.19 0 16434760
1217
Syllabus (2)
richp | 2018.09.18 | Votes 0 | Views 17053495
richp 2018.09.18 0 17053495
1216
Learning Objectives for ISTQB Advanced Level Technical Test Analyst Exam (1)
master15 | 2018.09.16 | Votes 0 | Views 16037392
master15 2018.09.16 0 16037392
1215
Software Testing Tools used by ISTQB certified Experts like Test Analysts and Technical Test Analysts (2)
master15 | 2018.09.16 | Votes 0 | Views 17416320
master15 2018.09.16 0 17416320
1214
What are the Advantages of ISTQB Certifications? (1)
master15 | 2018.09.13 | Votes 0 | Views 17024420
master15 2018.09.13 0 17024420
1213
How many Levels of Certification are provided by ISTQB? (1)
master15 | 2018.09.13 | Votes 0 | Views 17058214
master15 2018.09.13 0 17058214
1212
Syllabus CTAL-TTA - [BR] (1)
tcorteletti | 2018.09.09 | Votes 0 | Views 16070371
tcorteletti 2018.09.09 0 16070371
1211
Syllabus CTFL - [BR] (1)
tcorteletti | 2018.09.09 | Votes 0 | Views 16732628
tcorteletti 2018.09.09 0 16732628
1210
ISTQB Certification – Foundation Level syllabus
Sky Driver | 2018.09.05 | Votes 0 | Views 16700127
Sky Driver 2018.09.05 0 16700127
1209
Documents to be submitted at the time of registration of ISTQB Advanced Level (2)
Sky Driver | 2018.09.05 | Votes 0 | Views 16487450
Sky Driver 2018.09.05 0 16487450
1208
The prerequisites for applying for the ISTQB Advanced Level (1)
Sky Driver | 2018.09.05 | Votes 0 | Views 16660627
Sky Driver 2018.09.05 0 16660627