Top Related Projects
A curated list of code katas
My own notes (drafts mostly) about software quality
A curated list of awesome tools, utils and projects using Playwright
Quick Overview
TheJambo/awesome-testing is a curated list of testing tools, resources, and related materials for software development. It serves as a comprehensive guide for developers and QA professionals, covering various aspects of testing including unit testing, integration testing, performance testing, and more.
Pros
- Extensive collection of testing resources in one place
- Well-organized into categories for easy navigation
- Regularly updated with new tools and resources
- Community-driven, allowing contributions from developers worldwide
Cons
- May be overwhelming for beginners due to the large number of resources
- Some listed tools or resources might become outdated over time
- Lacks detailed explanations or comparisons between different tools
- Primarily focuses on listing resources rather than providing in-depth tutorials
Note: As this is not a code library, the code example and quick start sections have been omitted as per the instructions.
Competitor Comparisons
A curated list of code katas
Pros of awesome-katas
- Focuses specifically on coding katas, providing a curated list of programming challenges
- Includes katas for multiple programming languages and paradigms
- Offers a variety of difficulty levels, suitable for beginners to advanced developers
Cons of awesome-katas
- Limited scope compared to awesome-testing, which covers a broader range of testing topics
- Lacks resources on testing methodologies, tools, and best practices
- May not be as frequently updated as awesome-testing
Code Comparison
awesome-katas example (FizzBuzz kata):
def fizzbuzz(n):
if n % 3 == 0 and n % 5 == 0:
return 'FizzBuzz'
elif n % 3 == 0:
return 'Fizz'
elif n % 5 == 0:
return 'Buzz'
else:
return str(n)
awesome-testing example (Jest test):
test('adds 1 + 2 to equal 3', () => {
expect(sum(1, 2)).toBe(3);
});
Summary
awesome-katas is a valuable resource for developers looking to improve their coding skills through practice exercises, while awesome-testing provides a comprehensive collection of testing-related resources. The choice between the two depends on whether you're focusing on coding practice or learning about software testing methodologies and tools.
My own notes (drafts mostly) about software quality
Pros of sqa-wiki
- More comprehensive coverage of software quality assurance topics
- Includes a wider range of resources, including books, courses, and tools
- Regularly updated with new content and contributions
Cons of sqa-wiki
- Less organized structure compared to awesome-testing
- May be overwhelming for beginners due to the sheer amount of information
- Some links may be outdated or no longer relevant
Code Comparison
sqa-wiki:
## Books
* [Software Testing: A Craftsman's Approach](https://www.amazon.com/Software-Testing-Craftsmans-Approach-Fourth/dp/1466560681)
* [Agile Testing: A Practical Guide for Testers and Agile Teams](https://www.amazon.com/Agile-Testing-Practical-Guide-Testers/dp/0321534468)
awesome-testing:
## Contents
- [Testing Frameworks](#testing-frameworks)
- [Visual Regression](#visual-regression)
- [Browser and Devices](#browser-and-devices)
The code comparison shows that sqa-wiki focuses on listing resources like books, while awesome-testing provides a more structured table of contents for different testing categories. This reflects the overall organization and focus of each repository.
A curated list of awesome tools, utils and projects using Playwright
Pros of awesome-playwright
- Focused specifically on Playwright, providing a curated list of resources for this popular testing framework
- Includes sections on tools, plugins, and integrations tailored for Playwright users
- Regularly updated with new Playwright-related content and community contributions
Cons of awesome-playwright
- Limited scope compared to awesome-testing, which covers a broader range of testing topics
- May not be as useful for developers working with multiple testing frameworks or methodologies
- Fewer general testing resources and best practices
Code Comparison
awesome-playwright:
const { chromium } = require('playwright');
(async () => {
const browser = await chromium.launch();
const page = await browser.newPage();
await page.goto('https://example.com');
// ... more Playwright-specific code
})();
awesome-testing:
import unittest
class TestExample(unittest.TestCase):
def test_example(self):
self.assertEqual(1 + 1, 2)
# ... more general testing code
The code snippets illustrate the difference in focus between the two repositories. awesome-playwright provides Playwright-specific examples, while awesome-testing covers a broader range of testing approaches and languages.
Convert
designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual CopilotREADME
Awesome Testing

A curated list of testing software, extensions and resources
Foreword
This is intended to be a curation of resources for the new among the software testing community. It is not tailored to a specific area (Usability/Performance) or role (Automation/Management). The idea is that you could hand this list to a CS graduate and it would greatly improve their testing skills, efficiency and overall breadth of knowledge. Note that this is for all areas of software testing after the code in question is written (no unit tests/static analysis!).
Finally, I'm sure everyone who reads this list has one thing they want to add. Please read the How to Contribute page and add to the list. :)
Contents
- Software
- Books
- Training
- Blogs
- Newsletters
- Suggested Awesome Lists
- QA & Testing Road Map
- Others
- Contributing
- Code of Conduct
- License
Software
API Testing
- CORS Tester - A tool for developers and API testers to check if an API is CORS-enabled for a given domain and identify gaps.
- HttpMaster - Professional software tool for HTTP testing and debugging.
- Keploy - API Testing Platform that automatically generates unit test cases along with dependency mocks.
- RestQA - REST API testing framework based on Gherkin.
- Zato API Test - API testing in plain English with extendable Python implementation.
Security Testing
- BeEF - Manipulate the browser by exploiting any XSS vulnerabilities you find.
- OWASP ZAP - Intercepting proxy for HTTP traffic manipulation, security scanning, and exploitation.
Service Virtualization
- Beeceptor - Easy to use no-code mock servers for service virtualization. Rest, SOAP, GraphQL supported. Create an API mock server from OpenAPI Specification or Postman collection.
- DeepfakeHTTP - Web server using HTTP dumps as a response source for API simulation.
- WireMock - Open source HTTP mock engine written in Java. Embed in your test code, run as a standalone process, or deploy via Docker.
Visual Testing
- Fluxguard - Screenshot pixel and DOM change comparisons.
- GoodLooks - AI-powered visual validation for Playwright tests.
- TestingBot - Supports automated, manual, and visual testing.
- recheck-web - Change comparison tool with Golden Masters and "unbreakable Selenium" tests.
- wopee.io - Autonomous visual regression testing platform.
UI & End-to-End Testing
- BugBug - No-code test automation tool for web applications.
- Courgette - Declarative BDD UI testing with Gherkin.
- Ferrum - Chrome automation via CDP with a high-level Ruby API.
- Hyperbrowser - Scalable headless browser testing with built-in session recording.
- Hercules - Open-source end-to-end testing agent.
- LambdaTest - Unified enterprise test execution cloud platform for browser and mobile testing.
- Octomind - AI-powered test case discovery and maintenance.
- playwright-bdd - BDD-style Playwright testing.
- QA Wolf - Node.js library for creating browser tests faster.
Test Management
- Kiwi TCMS - Open-source test case management.
- TestLink - Open-source test case management system.
- Testomatio - Modern TCMS allowing sync of manual and automated tests.
Test Data Management
- Synth - Open-source test data generator.
- Touca - Continuous regression testing for behavioral and performance comparisons.
- test-each - Data-driven testing framework.
Browser Extensions & Utilities
- Bug Magnet - Field-based value suggestions for form testing.
- Check All - Provides a "Select All" function where missing.
- Full Page Screenshot - Capture full-page screenshots.
- Form Filler - Auto-fill large forms with dummy data.
- ProxySwitcher - Easy proxy switching for test/prod environments.
- Requestly - A lightweight proxy to intercept and modify network requests.
Accessibility & Usability Testing
- Colour Blindness Simulator - Simulate different types of color blindness.
Performance & Load Testing
- Yslow - Analyze web page performance based on Yahoo!'s rules.
Web3 & Blockchain Testing
- Cannon - Continuous configuration automation for Ethereum.
- Dapp.tools - Command-line tools and smart contract libraries for Ethereum.
- Ganache - Personal Ethereum blockchain for running tests.
- Foundry - Fast, modular toolkit for Ethereum development.
- Hardhat - Ethereum development and testing environment.
- Truffle Suite - Comprehensive smart contract development suite.
- Robot Framework Solidity Testing Toolkit - Robot Framework integration for Solidity testing.
Test Automation Frameworks
- Robot Framework - Generic open-source automation framework for testing and RPA.
Screen Recording & Session Replays
- Captura - Open-source video recording tool.
- Replayable - Desktop dashcam for capturing manual testing sessions.
Mind Mapping & Documentation
- Xmind - Mind mapping tool for documenting test cases and strategies.
Books
- The Scrum Field Guide, Agile advice for your first year and beyond - Why you might want to move your company to Agile and great practical advice on how to do it.
- Fifty quick ideas to improve your Tests - Great illustrative examples on how to improve tests and why you should do them. Great as evidence for winning arguments!
- Agile Testing: A Practical Guide - A how to guide for those looking to transition to an Agile as a tester and also how the authors work on their Agile teams.
- Explore It!: Reduce Risk and Increase Confidence with Exploratory Testing - A very good book on structuring Exploratory Testing and designing tests.
- The Domain Testing Workbook - An in-depth look at the most common test technique, Domain Testing (also called Boundary Analysis and Equivalence Class partitioning) in use today with lots of examples to become better.
- Don't Make Me Think: A Common Sense Approach to Web Usability - An incredibly useful book for usability testing.
- Lessons Learned in Software Testing - One of the best books on Software Testing, broken into bite size lessons that are as applicable now as when it was published.
- UI is Communication - How to make intuitive User Interfaces (UI and Usability Testing).
- Thinking, Fast and Slow - About how we make decisions and how to run experiments (experiments == tests).
- Chaos Engineering: Crash test your applications - A book on how to design and execute controlled software failure experiments.
- Testing JavaScript Applications - A book about JavaScript testing tools and techniques for developers.
- Chaos Engineering - A book that teaches you to design and execute controlled experiments that uncover hidden problems.
- The Art of Unit Testing, Third Edition - A book that guides you step by step from your first simple unit tests to building complete test sets that are maintainable, readable, and trustworthy.
- Testing Web APIs - Guarantee the quality and consistency of your web APIs by implementing an automated testing process.
- Effective Software Testing - A hands-on guide for developers on how to create high quality tests in a systematic and effective way.
Training (Includes developer training for automation testers)
- Learn to Code - Another awesome list for developer training
- The Dojo - Courses and talks directly from the testing community.
- Guru99 - Learn by experience, a bit more fun than video training.
- Coursera - Online courses from top universities.
- Cybrary - Online free security training.
- BBST Testing Courses - The famous Black Box Software Testing (BBST) courses are university level courses on Software Test Foundations, Bug Reporting and Test Design. These materials have been creative commons licensed for use by anyone. Includes articles, slides and video lectures.
Blogs
Newsletters
- Coding Jag - Your weekly dose of the latest in Testing, Development, CI/CD, and Automationâkeeping you ahead of the curve."
- Software Testing Weekly - A curated round-up of the best software testing news and tools published every Friday.
Suggested Awesome Lists
Must Read
- Falsehoods - A funny and educational list of why nothing in Software Development is ever easy. Think you can store a marriage in a DB?
- Naughty Strings - This is the famous list of Naughty Strings. If you're doing some field validation, look no further for inspiration.
- Unicode - A great resource for learning how unicode works and the issues it can cause.
Useful References
- The Original - The awesome list of awesome lists.
- Learn to Code - Learning to code, for those looking to make the move to automation
- Application Security - Incredibly extensive, but you'll find something to fit the bill.
- Selenium - Better than searching Google if you know what you want.
- Security - This is mostly focused on Infrastructure, but if you're testing a series of systems, this is very useful.
- Awesome Software Quality - A list of free software testing and verification resources.
- Awesome Cucumber - A (relatively-newer) curated list of awesome Cucumber and Gherkin-related resources.
- Awesome JMeter - A curated collection of resources around Apache JMeter.
- How They Test - A curated collection of public resources from tech companies on how they test their software and build a quality culture
QA and Testing Road Map
- How to start QA and Testing career - A wide and rich list of strategies, topics, and skills that you need to start a career in software testing and automation.
Others
- Testers Rage Playlist - A collaborative playlist from testers for when the red mist descends.
- Software Testing Conferences - A list of software testing conferences and workshops.
- Software Testing Interview Tool - A very buggy To Do List to facilitate face to face interviews.
Contributing
See the Awesome Testing contribution guide for details on how to contribute.
Code of Conduct
See the Code of Conduct for details. Basically it comes down to:
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
License
To the extent possible under law, the contributors have waived all copyright and related or neighboring rights to this work. See the license file for details.
Top Related Projects
A curated list of code katas
My own notes (drafts mostly) about software quality
A curated list of awesome tools, utils and projects using Playwright
Convert
designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual Copilot