├── .github
├── pull_request_template.md
└── workflows
│ └── action.yml
├── CONTRIBUTING.md
├── LICENSE
└── README.md
/.github/pull_request_template.md:
--------------------------------------------------------------------------------
1 |
2 | Fixes #
3 |
4 | ### Checklist
5 | - [ ] Read the [Contribution Guidelines](https://github.com/Tahanima/sqa-set-resources/blob/main/CONTRIBUTING.md)
6 | - [ ] Checked presence of no duplication.
7 | - [ ] Have put lists in alphabetical order and with correct spacing.
8 | - [ ] Verified that no links given are broken.
9 |
10 | ### Changes proposed in this pull request:
11 | -
12 | -
13 |
--------------------------------------------------------------------------------
/.github/workflows/action.yml:
--------------------------------------------------------------------------------
1 | name: Check Markdown links
2 |
3 | on:
4 | push:
5 | branches: [ main ]
6 | paths:
7 | - '**.md'
8 | pull_request:
9 | paths:
10 | - '**.md'
11 | jobs:
12 | markdown-link-check:
13 | runs-on: ubuntu-latest
14 | steps:
15 | - uses: actions/checkout@master
16 | - uses: gaurav-nelson/github-action-markdown-link-check@v1
17 |
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # Contribution Guidelines
2 |
3 | Please ensure that your pull request adheres to the following guidelines:
4 | - Verify that your suggestion is not already present.
5 | - Double check any link provided in your pull request so that it is not broken.
6 | - Make an individual pull request for each suggestion.
7 | - New categories or improvements to the existing categorization are welcome.
8 | - Check your spelling and grammar.
9 | - The pull request and commit should have a useful title.
10 |
11 | Your help is greatly appreciated. Thank you so much!
12 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2020 Tahanima Chowdhury
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # SQA/SET Resources
2 | A curated list of resources for SQA/SET role.
3 |
4 | ## Contents
5 | * [Blogs](#blogs)
6 | * [Courses](#courses)
7 | * [GitHub Repositories](#github-repositories)
8 | * [Roadmap](#roadmap)
9 | * [SQA/SET to follow on GitHub](#sqaset-to-follow-on-github)
10 | * [YouTube Channel](#youtube-channel)
11 | * [Contributing](#contributing)
12 | * [License](#license)
13 |
14 | ## Blogs
15 | * [Alex Ilyenko](https://alexilyenko.github.io/) - Contains some really awesome articles on Design Patterns in Test Automation.
16 | * [Angie Jones](https://angiejones.tech/) - Has a bunch of cool articles on Test Automation.
17 | * [Atlassian Software Testing](https://www.atlassian.com/continuous-delivery/software-testing)
18 | * [Automation Panda](https://automationpanda.com/)
19 | * [Blake Norrish](https://medium.com/@blakenorrish) - Has some great articles on the technical aspects relevant to Test Automation.
20 | * [DevQA.io](https://devqa.io/) - Has articles on a wide range of technical concepts.
21 | * [Find Zen in test automation - Easy recipes for every day](https://learning-testing.com/)
22 | * [Google Testing Blog](https://testing.googleblog.com/) - Contains a wide range of articles relevant to testing.
23 | * [LinkedIn Testing](https://engineering.linkedin.com/blog/topic/testing)
24 | * [Mindful Tester](https://mindfultester.com/)
25 | * [Next Generation Automation](https://www.nextgenerationautomation.com/blog)
26 | * [Nicola Lindgren](http://www.nicolalindgren.com/) - Is all about a Software Tester's learning journey.
27 | * [QA Madness](https://www.qamadness.com/blog) - Contains several articles on various aspects of Software Testing.
28 | * [Responsible Automation](https://responsibleautomation.wordpress.com/) - Paul Grizzaffi's blog about being responsible with automation, testing, and other things.
29 | * [Software Test Academy](https://www.swtestacademy.com/) - Has a wide range of tutorials and articles covering several tools and technologies relevant to testing.
30 | * [Test And Analysis](https://testandanalysis.home.blog/)
31 | * [TestingSpot Blog](https://techcommunity.microsoft.com/t5/testingspot-blog/bg-p/TestingSpotBlog)
32 | * [Try QA](http://tryqa.com/) - Contains study materials for ISTQB Exam Certification Foundation level, Premium and Free for ISTQB and ASTQB Exam, Certification questions, answers, software testing tutorials and more.
33 |
34 | ## Courses
35 | * [Cucumber | School](https://school.cucumber.io/collections) - Learn BDD in programming languages: Java, JavaScript, Ruby and C#/.NET for free.
36 | * [Test Automation University](https://testautomationu.applitools.com/) - Contains free tutorials that cover web, mobile, API, visual, AI, and, codeless automation.
37 | * [Web Application Security, Testing, & Scanning - PortSwigger](https://portswigger.net/) - Contains tutorials on web secutiry.
38 | * [BBST Video Lectures](https://bbst.courses/videos/)
39 |
40 | ## GitHub Repositories
41 | * [Awesome Appium](https://github.com/SrinivasanTarget/awesome-appium) - A curated list of delightful Appium resources.
42 | * [Awesome JMeter](https://github.com/aliesbelik/awesome-jmeter) - A collection of resources covering different aspects of JMeter usage.
43 | * [Awesome Penetration Testing](https://github.com/enaqx/awesome-pentest) - A collection of awesome penetration testing and offensive cybersecurity resources.
44 | * [Awesome Quality Assurance Roadmap](https://github.com/fityanos/awesome-quality-assurance-roadmap) - The starting point of your career as a Software Quality Assurance Engineer | Quality Automation Engineer.
45 | * [Awesome Selenium](https://github.com/christian-bromann/awesome-selenium) - A curated list of delightful Selenium resources.
46 | * [Awesome Testing](https://github.com/TheJambo/awesome-testing) - A curated list of testing software, extensions and resources.
47 | * [Awesome Visual Regression Testing](https://github.com/mojoaxel/awesome-regression-testing) - A curated list of resources around the topic: visual regression testing.
48 | * [How They Test](https://github.com/abhivaikar/howtheytest) - A curated collection of publicly available resources on how software companies around the world test their software systems and build their quality culture.
49 | * [Awesome Playwright](https://github.com/mxschmitt/awesome-playwright) - A curated list of awesome tools, utils and projects using Playwright.
50 |
51 | ## Roadmap
52 | * [Roadmap To Becoming A Test Automation Engineer](https://www.ministryoftesting.com/dojo/lessons/roadmap-to-becoming-a-test-automation-engineer)
53 |
54 | ## SQA/SET to follow on GitHub
55 | * [Angie Jones](https://github.com/angiejones)
56 | * [Bas Dijkstra](https://github.com/basdijkstra)
57 | * [Elias Nogueira](https://github.com/eliasnogueira)
58 |
59 | ## YouTube Channel
60 | * [ EvilTester - Software Testing](https://www.youtube.com/c/EvilTester)
61 |
62 | ## Contributing
63 | Your contributions are always welcome. Please, go through the [Contribution Guidelines](./CONTRIBUTING.md) before submitting your suggestion.
64 |
65 | ## License
66 | 
This work is licensed under the MIT License.
67 |
--------------------------------------------------------------------------------