Common Testing Terms Every QA Should Know
Day-2:
๐งโ๐ป Types of Software Testing โ Every Tester Should Know!
Software Testing is a broad field with different testing techniques โ each designed to catch specific issues and ensure quality.
Letโs explore some of the most commonly used types of testing in the industry:
1๏ธโฃ Manual Testing
Testing is done manually without the use of automation tools. Testers follow test cases and use the application like end-users.
Example: Manually checking whether a "Forgot Password" feature sends a reset link.
2๏ธโฃ Automation Testing
Writing scripts or using tools to automate test case execution โ faster, repeatable, and ideal for regression testing.
Example: Using Selenium to test login functionality across multiple browsers.
3๏ธโฃ Functional Testing
Verifying that all features of the application work as per the requirements.
Example: Testing if a user can add items to a shopping cart and place an order.
4๏ธโฃ Performance Testing
Testing how the system performs under different conditions โ load, stress, and scalability.
Example: Testing whether a website loads within 2 seconds with 1000 concurrent users.
5๏ธโฃ Security Testing
Identifying vulnerabilities or security loopholes in the application to protect against attacks.
Example: Testing for SQL Injection, XSS, or data leakage in sensitive fields.
6๏ธโฃ Usability Testing
Ensuring the application is user-friendly and provides a good user experience.
Example: Checking whether users can easily navigate through the app.
7๏ธโฃ Integration Testing
Testing how different modules or components of a system interact with each other.
Example: Testing if the payment gateway successfully communicates with the bank server.
8๏ธโฃ Regression Testing
Re-testing the existing features after changes or bug fixes to ensure no new issues are introduced.
Example: After fixing a payment bug, testers recheck the entire checkout process.
9๏ธโฃ User Acceptance Testing (UAT)
Testing is done by the client or end-users to validate if the product meets their expectations.
Example: A client verifies the developed HR portal before final release.
1๏ธโฃ0๏ธโฃ Compatibility Testing
Ensuring the application works seamlessly across different devices, browsers, OS, and networks.
Example: Testing an e-commerce website on Chrome, Firefox, Safari, and Edge browsers.
Day 3:
Human-Led vs Tool-Assisted Testing โ A Clearer Perspective
In the world of software testing, terms like "Manual Testing" and "Automation Testing" are widely used, but they often create confusion, especially among newcomers. These are not different types of testing, but rather approaches we use to perform testing activities.
Letโs take a moment to understand what each really means and why we should think differently about them.
๐ Human-Led Testing
Also known (though less accurately) as โmanual testing,โ this is a testing approach where humans actively perform the tests without the help of scripts. But itโs far from โjust clicking.โ It involves:
Critical thinking
Exploration and intuition
Analyzing unexpected behavior
Assessing usability and user experience
โ
Best suited for:
Exploratory Testing
Ad-hoc Testing
Usability Testing
Tests with frequently changing UI/UX
๐งช Example:
While testing a travel booking app, a tester might observe that users naturally expect a calendar pop-up when they click the "Departure Date" field. The app opens a dropdown instead โ technically functional, but not intuitive. This insight can only be caught by human judgment.
๐ค Tool-Assisted Testing
Often called โautomation testing,โ this is a technique where scripts or tools are used to perform tests. However, those scripts' design, development, and maintenance are still human-led.
โ
Best suited for:
Regression Testing
Performance Testing
Load Testing
Repetitive test cases with stable UIs
Example:
If a retail app has 200+ test cases to verify after every minor update, automating these scenarios using Selenium or Cypress ensures quick, consistent feedback, saving hours of manual effort.
โ๏ธ Key Takeaway
Both approaches are essential. One explores and uncovers, while the other ensures consistency and efficiency. Itโs time we move past the misnomers of โmanualโ and โautomatedโ and recognize the testerโs role as central, no matter the tool.
Day 5:
๐ Why Software Testing is Essential in 2025
As technology rapidly evolves, software testing has shifted from a support role to a strategic driver of quality, trust, and innovation. In 2025, it's not just about "does it work?" โ itโs about how securely, ethically, and efficiently it works.
๐ Why Is Testing So Important in 2025?
โ
1. AI-Driven Systems Demand Accuracy & Ethics
From healthcare to finance, AI systems now make critical decisions. These models are complex and dynamic.
๐น Testing ensures fairness, transparency, and that AI behaves responsibly across real-world scenarios.
โ
2. Speed from Agile & CI/CD Requires Stability
Modern development teams ship faster than ever.
๐น Continuous testing โ including automation, regression, and integration โ keeps pace without sacrificing quality.
โ
3. Security Is Mission Critical
Ransomware, phishing, and supply-chain attacks are rising. Businesses canโt afford reputational or financial loss due to vulnerabilities.
๐น Embedding security testing and vulnerability scanning into the pipeline is key for proactive defense. In 2025, DevSecOps isn't a trend โ it's a necessity.
โ
4. Multi-Platform, Multi-Device Expectations
Apps run across phones, wearables, browsers, and smart devices.
๐น Testing must ensure consistent performance across OS versions, screen sizes, and network conditions.
โ
5. Great UX Is a Competitive Advantage
A clunky or slow app drives users away.
๐น Performance, usability, and accessibility testing help ensure seamless and inclusive experiences.
โ
6. Regulatory Compliance Is Evolving
With AI regulations, GDPR updates, and industry-specific mandates, compliance is complex.
๐น Testing supports legal readiness through checks for data privacy, consent, and reporting mechanisms.
โ
7. Real-Time & Big Data Needs Precision
With ML-based personalization, recommendation engines, and dashboards relying on real-time data, bad input = bad decisions
๐น QA validates data integrity, pipeline performance, and alert systems to avoid costly errors.
โ
8. Trust Is the True Product
Whether it's a healthcare app or a payment gateway, reliability builds trust.
๐น Testing ensures consistency across edge cases, giving confidence to developers, users, and stakeholders alike.
๐ง Real-World Example
Picture a wearable health tracker that flags abnormal heart rhythms. If the testing missed an edge case, the device might delay or ignore alerts, potentially putting users at serious risk.
โ๏ธ With proper test coverage, simulation, and fault injection, such high-stakes bugs can be prevented.
Day 6:
๐ง Top 10 Testing Tools Every QA Engineer Should Know in 2025
QA is no longer just about catching bugs โ it's a critical enabler of fast, secure, and scalable software delivery. As projects grow more complex and timelines shrink, the right tools can make or break your testing strategy.
๐ ๏ธ Top 10 Testing Tools Shaping QA in 2025
Selenium
The industry standard for web automation testing. Selenium supports multiple languages and browsers, making it a top choice for regression and functional testing.
Postman
A powerful platform for API development and testing, offering automation via scripts, mock servers, and robust integrations. A go-to for backend and service validation.
Apache JMeter
A performance testing tool is widely used to simulate heavy loads on servers and measure application behavior under stress. Essential for web and API performance testing.
TestNG
A versatile testing framework inspired by JUnit but more powerfulโgreat for complex testing suites, parallel test execution, and data-driven testing, especially with Selenium.
Appium
The leading open-source tool for mobile automation testing. Supports native, hybrid, and mobile web apps on both Android and iOS using a single codebase.
Cypress
A modern end-to-end testing framework for JavaScript applications. Loved for its speed, debuggability, and real-time reloadingโideal for frontend UI tests.
Playwright
Developed by Microsoft, this fast-rising tool enables reliable cross-browser testing across Chromium, Firefox, and WebKit with headless support and full automation features.
Burp Suite
The gold standard for web security testing. Ideal for penetration testing, detecting vulnerabilities like XSS, CSRF, and more, vital in DevSecOps pipelines.
TestRail
A comprehensive test case management platform that helps teams organize, track, and manage testing efforts with integrations to tools like Jira and CI/CD pipelines.
QTest by Tricentis
Enterprise-grade test management with support for Agile workflows, real-time reporting, and seamless integration with automation frameworks and DevOps tools.
These ten tools are among the most widely used, but countless others are chosen by teams worldwide based on their unique project needs, tech stacks, and testing goals.
โ
Real-World Scenario: How These Tools Work Together
Imagine testing a banking app:
Selenium for UI automation
Postman to validate transaction APIs
JMeter to simulate 1,000+ users
Burp Suite to ensure data security
By combining tools across layers, you ensure full test coverage, from functionality to performance and security.
Day 7
๐ Bug Life Cycle (with Real-World Examples)
The Bug Life Cycle defines each stage a software bug goes through from discovery to closure. Understanding this process improves tracking, communication, and overall product quality.
Life Cycle Stages with Examples:
1) New
A tester finds a bug and logs it in the system.
Example: On an e-commerce app, clicking โApply Couponโ crashes the app. The tester logs this with steps and screenshots.
2) Assigned
QA leads review and assign it to the concerned developer.
Example: The bug is assigned to the frontend developer who manages the cart module.
3) Open
The developer starts analyzing and working on the fix.
Example: The dev checks the coupon component and identifies a missing null check.
4) Fixed
The developer fixed the issue and marked the bug as fixed.
Example: The crash is resolved by adding proper error handling for invalid coupon responses.
5) Pending Retest
The fix is deployed to the QA environment.
Example: The updated version is now available on staging, ready for QA validation.
6) Retest
Tester verifies the fix by replicating the original steps.
Example: Tester applies various coupons and confirms the app no longer crashes.
7) Verified
The bug is confirmed as resolved.
Example: Tester validates both valid and invalid coupon scenarios. All works fine.
8) Closed
The QA lead or manager closes the bug.
Example: Since all tests pass, no further action is needed. The bug is closed.
Alternative Bug Outcomes After Opening a Bug:
โ
Reopened
The bug reappears or isnโt fully fixed.
Example: Another tester finds that the same crash happens when a coupon is applied on the Wishlist page. The bug is reopened.
โ
Duplicate
Same issue logged earlier.
Example: Another tester reported the coupon crash in a different module. This bug is marked as duplicate.
โ
Deferred
Bug postponed to future release.
Example: A visual glitch on the help page is minor and pushed to the next sprint.
โ
Rejected
The bug isnโt valid.
Example: Tester misunderstood a feature. Coupon logic was working as designed.
โ
Not a bug
Reported behavior is expected.
Example: Tester thinks prices should update automatically, but the system requires manual refresh due to business logic.
โ
Every stage ensures traceability, accountability, and clear communication between QA and Dev teams.
Day 8:
Common Testing Terms Every QA Should Know-
In software testing, mastering terminology is key to mastering the craft. Here's a quick, professional refresher on 20 key testing terms with mini examples to bring them to life. ๐
๐น Bug/Defect
An error causing incorrect behavior.
Example: Clicking โAdd to Cartโ increases item quantity instead.
๐น Smoke Testing
Basic checks to ensure the build is stable.
Example: App opens and homepage loads without crashing.
๐น Regression Testing
Re-checking old features after changes.
Example: Testing payment after updating the shipping module.
๐น Unit Testing
Testing smallest units in isolation.
Example: Validate if a โSubmitโ button triggers correct event.
๐น Integration Testing
Testing combined components progressively.
Example: Ensure user profile fetch works after login.
๐น System Testing
Testing the complete, integrated software.
Example: Simulate end-to-end shopping and payment flow.
๐น UAT (User Acceptance Testing)
Testing by end users before go-live.
Example: Client tests if invoice generation meets business logic.
๐น Non-Functional Testing
Tests performance, usability, security, etc.
Example: Load test checks if site handles 1000 users.
๐น Sanity Testing
Quick checks after minor fixes.
Example: Confirming โReset Passwordโ works after UI update.
๐น Black Box Testing
Testing based on output, no code knowledge.
Example: Tester enters input and verifies result without checking backend logic.
๐น White Box Testing
Testing with access to internal code.
Example: Developer writes tests for conditional logic in a payment service.
๐น Exploratory Testing
Simultaneous learning, testing, and thinking.
Example: Tester clicks around a new feature without formal scripts to discover issues.
๐น Boundary Testing
Testing input limits.
Example: Check form accepts names of exactly 50 characters.
๐น Functional Testing
Tests if features work as expected.
Example: Search bar returns accurate product results.
๐น Test Suite
A group of related test cases.
Example: Checkout test suite contains all cart, shipping, and payment test cases.
๐น Test Case
A set of steps to verify a specific function.
Example: Check if login succeeds with valid credentials.
๐น Test Plan
Document describing scope, strategy, and deliverables.
Example: Plan outlines timelines, tools, and testers for Sprint.
๐น Test Script
Detailed steps for running a test.
Example: โStep 1: Enter username, Step 2: Enter password, Step 3: Click Login.โ
๐น Test Scenario
High-level idea of what to test.
Example: โVerify user registration with valid email.โ
๐น Test Environment
Setup where tests are executed.
Example: A staging server replicating production setup for safe testing.
0 comments:
Post a Comment