Skip to main content

πŸš€ Day 2 of 100 Days of QA Learning!


Continuing the QA learning journey, today’s focus is on the Software Testing Life Cycle (STLC)—a crucial process that defines how testing should be structured and executed.
This post covers:
✅ STLC Phases (Requirement Analysis, Test Planning, Execution & more)
✅ How to write effective test cases
✅ Resources to quickly grasp key testing concepts
✅ Hands-on practice to apply what you learn
My learning Partner, ChatGPT for research and Canva to design the visuals, making learning easier and more engaging!
πŸ’‘ Check it out below, and let’s keep growing together in QA! Drop a comment if you’re following along.

What is STLC (Software Testing Life Cycle)?

STLC (Software Testing Life Cycle) is a systematic process used to test software and ensure its quality before release. It defines a step-by-step approach to testing, covering everything from requirement analysis to test closure.

Phases of STLC:

1️⃣ Requirement Analysis – Understand what needs to be tested.
2️⃣ Test Planning – Define testing strategy, scope, and resources.
3️⃣ Test Case Development – Write test cases and prepare test data.
4️⃣ Test Environment Setup – Configure hardware/software for testing.
5️⃣ Test Execution – Run test cases and report defects.
6️⃣ Test Closure – Analyze results and prepare reports.

Fast-Track Learning Guide: Read about STLC phases (20 mins) - Software Testing

1. Understand how to create test plans (15 mins) - Guru99 Test Plan Guide

2. Learn test case writing best practices (25 mins) - Test Case Writing Guide

3. Set up a simple test environment (20 mins) - Software Testing Environment Setup

4.Practice executing test cases on a demo application (30 mins) - Demo Testing Site

5.

Document findings & create a simple test report (10

mins) - Test Reporting Guide

Comments

Popular posts from this blog

Understanding XML for QA Testing

 As a QA tester, working with XML is essential, especially for API testing, data validation, and automation . Today, I explored the key concepts every QA should know about XML. πŸ”Ή What is XML? XML ( eXtensible Markup Language ) is used for storing and transporting data in a structured format. It’s widely used in APIs (SOAP), test data, and configurations . πŸ”Ή Why QA Testers Should Learn XML? ✅ API Testing – SOAP APIs use XML for requests & responses. ✅ Test Data Handling – XML is used in test scripts, Selenium, and data-driven testing. ✅ Config Files – Many automation tools (TestNG, Jenkins) use XML for setup. πŸ”Ή Key XML Concepts for QA πŸ“Œ XML Structure – Elements, attributes, nesting, and schema validation. πŸ“Œ XPath – Used for locating XML nodes in automation & API testing. πŸ“Œ XML Schema (XSD) – Ensures data correctness in APIs. πŸ“Œ Parsing XML – Reading & extracting values using tools like Postman, Python, or Java . πŸ’‘ Where to Learn XML? πŸ“– W3Scho...

30 Manual Testing interview questions from glass door

Here are 30 manual testing interview questions commonly encountered in interviews, compiled from various sources including Glassdoor: What is the difference between Quality Assurance (QA), Quality Control (QC), and Software Testing? QA focuses on improving the processes to deliver Quality Products. QC involves the activities that ensure the verification of a developed product. Software Testing is the process of evaluating a system to identify any gaps, errors, or missing requirements. Can you explain the Software Testing Life Cycle (STLC)? The STLC includes phases such as Requirement Analysis, Test Planning, Test Case Development, Environment Setup, Test Execution, and Test Closure. What is the difference between Smoke Testing and Sanity Testing? Smoke Testing is a preliminary test to check the basic functionality of the application. Sanity Testing is a subset of regression testing to verify that a specific section of the application is still worki...

4th Part 100 Glassdoor QA interview reviews

  πŸ§ͺ Section 1: Manual Testing Fundamentals (1–20) What is the difference between verification and validation? Verification ensures the product is built correctly. Validation checks if the right product is built. What are the different levels of testing? Unit testing, integration testing, system testing, and acceptance testing. Define a test case and test scenario. A test case is a set of inputs and steps to verify a function. A test scenario is a high-level idea of what to test. What is severity and priority in bug tracking? Severity reflects the impact. Priority reflects the urgency to fix. What is black-box testing? Testing without knowing internal code logic; based on inputs and outputs. What is exploratory testing? Unstructured testing to explore the application freely. What is functional vs. non-functional testing? Functional testing checks business logic. Non-functional checks performance, scalability, etc. What is regression testing? Retesting features to ensure changes hav...