Software Testing Tools used by ISTQB certified Experts like Test Analysts and Technical Test Analysts
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.
Number | Title | Author | Date | Votes | Views |
Notice |
CTFL (Certified Tester Foundation Level) Syllabus 4.0
admin
|
2024.09.15
|
Votes 0
|
Views 1429948
|
admin | 2024.09.15 | 0 | 1429948 |
Notice |
ISTQB Foundation - Certified Tester (2018) : Official Sample Exam Set 2 with Answer (4)
Testersbest
|
2019.06.21
|
Votes 0
|
Views 11018798
|
Testersbest | 2019.06.21 | 0 | 11018798 |
Notice |
ISTQB Foundation - Certified Tester (2018) : Official Sample Exam Set 1 with Answer (3)
Testersbest
|
2019.06.21
|
Votes 0
|
Views 10842292
|
Testersbest | 2019.06.21 | 0 | 10842292 |
Notice |
ISTQB Foundation Certified Tester (2018) : New Exam Rule (1)
Testersbest
|
2019.06.21
|
Votes 0
|
Views 11355342
|
Testersbest | 2019.06.21 | 0 | 11355342 |
Notice |
ISTQB Foundation - Certified Tester Syllabus (2018)
VTB
|
2018.11.14
|
Votes 0
|
Views 11290481
|
VTB | 2018.11.14 | 0 | 11290481 |
Notice |
ISTQB Advanced Level Syllabus (2016) Security Tester
VTB
|
2018.10.26
|
Votes 0
|
Views 11612730
|
VTB | 2018.10.26 | 0 | 11612730 |
Notice |
ISTQB Advanced Level Syllabus (2012) Technical Test Analyst
VTB
|
2016.05.06
|
Votes 0
|
Views 11010875
|
VTB | 2016.05.06 | 0 | 11010875 |
Notice |
ISTQB Advanced Level Syllabus (2012) Test Manager
VTB
|
2016.05.06
|
Votes 0
|
Views 11392251
|
VTB | 2016.05.06 | 0 | 11392251 |
Notice |
ISTQB Advanced Level Syllabus (2012) Test Analyst
VTB
|
2016.05.06
|
Votes 0
|
Views 10918499
|
VTB | 2016.05.06 | 0 | 10918499 |
Notice |
ISTQB Glossary of Testing Terms Version:2.2
VTB
|
2016.05.06
|
Votes 0
|
Views 11135938
|
VTB | 2016.05.06 | 0 | 11135938 |
Notice |
ISTQB Expert Level (CTEL) Syllabus -Test Management (3)
VTB
|
2015.09.13
|
Votes 0
|
Views 10975816
|
VTB | 2015.09.13 | 0 | 10975816 |
Notice |
ISTQB Expert Level (CTEL) Syllabus - Improving the Testing Process (1)
VTB
|
2015.09.13
|
Votes 0
|
Views 11387345
|
VTB | 2015.09.13 | 0 | 11387345 |
Notice |
ISTQB Foundation Level (CTFL) Syllabus 2011 (12)
VTB
|
2014.10.11
|
Votes 0
|
Views 11165166
|
VTB | 2014.10.11 | 0 | 11165166 |
1257 |
ISTQB Question and Answers (Advanced Level)
Steveskok
|
2021.02.07
|
Votes 0
|
Views 11005985
|
Steveskok | 2021.02.07 | 0 | 11005985 |
1256 |
ISTQB Certified Tester Foundation Level Syllabus Version 2018 V3.1
(TestExpert)
|
2020.02.03
|
Votes 0
|
Views 11077856
|
(TestExpert) | 2020.02.03 | 0 | 11077856 |
1255 |
ISTQB Advanced - Technical Test Analyst Sample Exam
ItSeTsQtB
|
2019.08.08
|
Votes 0
|
Views 11294058
|
ItSeTsQtB | 2019.08.08 | 0 | 11294058 |
1254 |
ISTQB Certification and Training Value
^Software^
|
2019.07.22
|
Votes 0
|
Views 11430664
|
^Software^ | 2019.07.22 | 0 | 11430664 |
1253 |
ISTQB Foundation - Agile Tester (Sample Exam)
IT-Tester
|
2019.07.08
|
Votes 0
|
Views 11154165
|
IT-Tester | 2019.07.08 | 0 | 11154165 |
1252 |
ISTQB Advanced - Technical Test Analyst (Sample Exam)
IT-Tester
|
2019.07.08
|
Votes 0
|
Views 11355424
|
IT-Tester | 2019.07.08 | 0 | 11355424 |
1251 |
ISTQB Advanced - Test Analyst (Sample Exam) (1)
IT-Tester
|
2019.07.08
|
Votes 0
|
Views 10672738
|
IT-Tester | 2019.07.08 | 0 | 10672738 |
1250 |
Premium Question Paper 4 (3)
iknev
|
2019.02.22
|
Votes 0
|
Views 11331180
|
iknev | 2019.02.22 | 0 | 11331180 |
1249 |
Premium Question Paper 3 (6)
iknev
|
2019.02.22
|
Votes 0
|
Views 11332577
|
iknev | 2019.02.22 | 0 | 11332577 |
1248 |
Premium Question Paper 1 (2)
iknev
|
2019.02.22
|
Votes 0
|
Views 11282708
|
iknev | 2019.02.22 | 0 | 11282708 |
1247 |
ISTQB Question Bank_ Test Manager Sample Question Set 1
iknev
|
2019.02.22
|
Votes 0
|
Views 10921765
|
iknev | 2019.02.22 | 0 | 10921765 |
1246 |
ISTQB Certified Tester List (FULL)
VTB
|
2018.10.31
|
Votes 0
|
Views 11551884
|
VTB | 2018.10.31 | 0 | 11551884 |
1245 |
ISTQB Agile Exam (Auckland, NZ)
VTB
|
2018.10.28
|
Votes 0
|
Views 11666918
|
VTB | 2018.10.28 | 0 | 11666918 |
1244 |
ISTQB Foundation Exam (Auckland, NZ)
VTB
|
2018.10.28
|
Votes 0
|
Views 11012085
|
VTB | 2018.10.28 | 0 | 11012085 |
1243 |
ISTQB Foundation Course (Auckland, NZ)
VTB
|
2018.10.28
|
Votes 0
|
Views 11329004
|
VTB | 2018.10.28 | 0 | 11329004 |
1242 |
ISTQB Foundation Agile Course (Auckland, NZ)
VTB
|
2018.10.28
|
Votes 0
|
Views 11490526
|
VTB | 2018.10.28 | 0 | 11490526 |
1241 |
ISTQB Course + Internship (Auckland, NZ)
VTB
|
2018.10.28
|
Votes 0
|
Views 11097077
|
VTB | 2018.10.28 | 0 | 11097077 |
1240 |
ISTQB Expert - Improving the Test Process [Sample Exam & Answer] - ISTQB Official
VTB
|
2018.10.26
|
Votes 0
|
Views 11291016
|
VTB | 2018.10.26 | 0 | 11291016 |
1239 |
ISTQB Expert - Test Manager [Sample Exam & Answer] - ISTQB Official (1)
VTB
|
2018.10.26
|
Votes 0
|
Views 11368272
|
VTB | 2018.10.26 | 0 | 11368272 |
1238 |
ISTQB Advanced - Technical Test Analyst [Sample Exam & Answer] - ISTQB Official
VTB
|
2018.10.26
|
Votes 0
|
Views 11584847
|
VTB | 2018.10.26 | 0 | 11584847 |
1237 |
ISTQB Advanced - Test Analyst [Sample Exam & Answer] - ISTQB Official
VTB
|
2018.10.26
|
Votes 0
|
Views 11583383
|
VTB | 2018.10.26 | 0 | 11583383 |
1236 |
ISTQB Advanced - Test Manager [Sample Exam & Answer] - ISTQB Official (1)
VTB
|
2018.10.26
|
Votes 0
|
Views 11015547
|
VTB | 2018.10.26 | 0 | 11015547 |
1235 |
ISTQB Foundation - Model Based Tester [Sample Exam & Answers] - ISTQB Official
VTB
|
2018.10.26
|
Votes 0
|
Views 11822446
|
VTB | 2018.10.26 | 0 | 11822446 |
1234 |
ISTQB Foundation - Agile Tester [Sample Exam & Answer] - ISTQB Official
VTB
|
2018.10.26
|
Votes 0
|
Views 11162356
|
VTB | 2018.10.26 | 0 | 11162356 |
1233 |
ISTQB Foundation - Certified Tester [Sample Exam & Answer] - ISTQB Official (1)
VTB
|
2018.10.26
|
Votes 0
|
Views 10873692
|
VTB | 2018.10.26 | 0 | 10873692 |
1232 |
ISTQB Exam Tips and Tricks
VTB
|
2018.10.16
|
Votes 0
|
Views 11143673
|
VTB | 2018.10.16 | 0 | 11143673 |
1231 |
ISTQB Foundation Level Quiz 20 Questions (1)
aiitistqb
|
2018.10.16
|
Votes 0
|
Views 11982011
|
aiitistqb | 2018.10.16 | 0 | 11982011 |
1230 |
ISTQB Free Sample Exam and Answers
aiitistqb
|
2018.10.16
|
Votes 0
|
Views 11807006
|
aiitistqb | 2018.10.16 | 0 | 11807006 |
1229 |
ISTQB Foundation - Agile Extension Online Courses is live!!
VTB
|
2018.10.16
|
Votes 0
|
Views 11532177
|
VTB | 2018.10.16 | 0 | 11532177 |
1228 |
ISTQB Foundation Online Courses are Live!!
VTB
|
2018.10.12
|
Votes 0
|
Views 11508382
|
VTB | 2018.10.12 | 0 | 11508382 |
1227 |
ISTQB Foundation (Practice Exam)
VTB
|
2018.10.12
|
Votes 0
|
Views 10924576
|
VTB | 2018.10.12 | 0 | 10924576 |
1226 |
CTAL TM Questions (23)
ulissesmafra
|
2018.10.09
|
Votes 1
|
Views 11550709
|
ulissesmafra | 2018.10.09 | 1 | 11550709 |
1225 |
Syllabus 2012 (2)
ulissesmafra
|
2018.10.09
|
Votes 0
|
Views 11068684
|
ulissesmafra | 2018.10.09 | 0 | 11068684 |
1224 |
ISEB & ISTQB EXAM TIPS (3)
Sky Driver
|
2018.09.24
|
Votes 0
|
Views 11058409
|
Sky Driver | 2018.09.24 | 0 | 11058409 |
1223 |
Tips for clearing ISTQB Foundation Level Exam (1)
Sky Driver
|
2018.09.24
|
Votes 0
|
Views 11442068
|
Sky Driver | 2018.09.24 | 0 | 11442068 |
1222 |
Tips for passing the ISTQB Foundation Level exam – Do’s and Don’t’s
Sky Driver
|
2018.09.24
|
Votes 0
|
Views 11601803
|
Sky Driver | 2018.09.24 | 0 | 11601803 |
1221 |
Why do people fail the ISTQB Foundation Certificate? (1)
Sky Driver
|
2018.09.24
|
Votes 0
|
Views 11253248
|
Sky Driver | 2018.09.24 | 0 | 11253248 |
1220 |
ISTQB Foundation Mock Exam 2 (3)
peter_hey
|
2018.09.19
|
Votes 3
|
Views 11634000
|
peter_hey | 2018.09.19 | 3 | 11634000 |
1219 |
ISTQB Foundation Mock Exam 1 (3)
peter_hey
|
2018.09.19
|
Votes 0
|
Views 11216748
|
peter_hey | 2018.09.19 | 0 | 11216748 |
1218 |
What is ISTQB? (1)
master15
|
2018.09.19
|
Votes 0
|
Views 11281827
|
master15 | 2018.09.19 | 0 | 11281827 |
1217 |
Syllabus (2)
richp
|
2018.09.18
|
Votes 0
|
Views 11549859
|
richp | 2018.09.18 | 0 | 11549859 |
1216 |
Learning Objectives for ISTQB Advanced Level Technical Test Analyst Exam (1)
master15
|
2018.09.16
|
Votes 0
|
Views 10752795
|
master15 | 2018.09.16 | 0 | 10752795 |
1215 |
Software Testing Tools used by ISTQB certified Experts like Test Analysts and Technical Test Analysts (2)
master15
|
2018.09.16
|
Votes 0
|
Views 11719075
|
master15 | 2018.09.16 | 0 | 11719075 |
1214 |
What are the Advantages of ISTQB Certifications? (1)
master15
|
2018.09.13
|
Votes 0
|
Views 11560606
|
master15 | 2018.09.13 | 0 | 11560606 |
1213 |
How many Levels of Certification are provided by ISTQB? (1)
master15
|
2018.09.13
|
Votes 0
|
Views 11589939
|
master15 | 2018.09.13 | 0 | 11589939 |
1212 |
Syllabus CTAL-TTA - [BR] (1)
tcorteletti
|
2018.09.09
|
Votes 0
|
Views 10706008
|
tcorteletti | 2018.09.09 | 0 | 10706008 |
1211 |
Syllabus CTFL - [BR] (1)
tcorteletti
|
2018.09.09
|
Votes 0
|
Views 11492743
|
tcorteletti | 2018.09.09 | 0 | 11492743 |
1210 |
ISTQB Certification – Foundation Level syllabus
Sky Driver
|
2018.09.05
|
Votes 0
|
Views 11051796
|
Sky Driver | 2018.09.05 | 0 | 11051796 |
1209 |
Documents to be submitted at the time of registration of ISTQB Advanced Level (2)
Sky Driver
|
2018.09.05
|
Votes 0
|
Views 11099431
|
Sky Driver | 2018.09.05 | 0 | 11099431 |
1208 |
The prerequisites for applying for the ISTQB Advanced Level (1)
Sky Driver
|
2018.09.05
|
Votes 0
|
Views 11068205
|
Sky Driver | 2018.09.05 | 0 | 11068205 |
nice article
thx