<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Lavanya P M</title>
    <description>The latest articles on DEV Community by Lavanya P M (@lavanya_hasmith12303).</description>
    <link>https://dev.to/lavanya_hasmith12303</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3939453%2F1c76e59b-1cdc-4e04-a253-205ba44cedb9.png</url>
      <title>DEV Community: Lavanya P M</title>
      <link>https://dev.to/lavanya_hasmith12303</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/lavanya_hasmith12303"/>
    <language>en</language>
    <item>
      <title>MANUAL TESTING EVOLVING NOT DYING</title>
      <dc:creator>Lavanya P M</dc:creator>
      <pubDate>Tue, 19 May 2026 06:21:53 +0000</pubDate>
      <link>https://dev.to/lavanya_hasmith12303/manual-testing-evolving-not-dying-3d7a</link>
      <guid>https://dev.to/lavanya_hasmith12303/manual-testing-evolving-not-dying-3d7a</guid>
      <description>&lt;p&gt;INTRO:&lt;br&gt;
      Software testing ensures applications work correctly, securely, and efficiently before reaching users. While automation and AI are transforming QA processes, manual testing remains an essential part of software quality assurance. This blog explores different types of manual testing, important test design techniques like Boundary Value Analysis and Decision Table Testing, and the future of manual testing in the age of AI.&lt;/p&gt;

&lt;p&gt;CORE CONCEPTS:(MANUAL TESTING)&lt;br&gt;
              Definition: Executing test cases manually without automation tools.&lt;br&gt;
             Pros: High empathy for user experience, low setup cost, and flexibility.&lt;br&gt;
             Cons: Time-consuming, prone to human fatigue, and difficult for repetitive large-scale tasks.&lt;/p&gt;

&lt;p&gt;TYPES OF MANUAL TESTING:&lt;/p&gt;

&lt;p&gt;Functional Testing&lt;/p&gt;

&lt;p&gt;Verifies whether features work according to requirements.&lt;/p&gt;

&lt;p&gt;Example&lt;/p&gt;

&lt;p&gt;Checking whether the “Add to Cart” button works correctly.&lt;/p&gt;

&lt;p&gt;Regression Testing&lt;/p&gt;

&lt;p&gt;Ensures new code changes do not break existing functionality.&lt;/p&gt;

&lt;p&gt;Example&lt;/p&gt;

&lt;p&gt;After adding a payment feature, verifying login and checkout still work.&lt;/p&gt;

&lt;p&gt;Smoke Testing&lt;/p&gt;

&lt;p&gt;Basic testing to confirm the build is stable.&lt;/p&gt;

&lt;p&gt;Example&lt;/p&gt;

&lt;p&gt;Checking whether the application launches successfully.&lt;/p&gt;

&lt;p&gt;Integration Testing&lt;/p&gt;

&lt;p&gt;Tests interaction between modules.&lt;/p&gt;

&lt;p&gt;Example&lt;/p&gt;

&lt;p&gt;Verifying payment gateway integration with the shopping cart.&lt;/p&gt;

&lt;p&gt;System Testing&lt;/p&gt;

&lt;p&gt;Tests the complete application as a whole.&lt;/p&gt;

&lt;p&gt;User Acceptance Testing (UAT)&lt;/p&gt;

&lt;p&gt;Performed by end users or clients before release.&lt;/p&gt;

&lt;p&gt;Exploratory Testing&lt;/p&gt;

&lt;p&gt;Testers explore the application without predefined scripts.&lt;/p&gt;

&lt;p&gt;BOUNDARY VALUE ANALYSIS:&lt;br&gt;
Boundary Value Analysis is a black-box testing technique used to identify defects at the boundaries of input ranges.&lt;/p&gt;

&lt;p&gt;Defects commonly occur at boundary values rather than within the center of the range.&lt;/p&gt;

&lt;p&gt;Why Boundary Testing Matters&lt;/p&gt;

&lt;p&gt;Applications often fail when handling:&lt;/p&gt;

&lt;p&gt;Minimum values&lt;br&gt;
Maximum values&lt;br&gt;
Values just inside or outside the valid range&lt;/p&gt;

&lt;p&gt;Testing these boundaries improves reliability and reduces production defects.&lt;/p&gt;

&lt;p&gt;Example of Boundary Value Analysis&lt;/p&gt;

&lt;p&gt;Suppose an application accepts ages between 18 and 60.&lt;/p&gt;

&lt;p&gt;Valid Range:&lt;/p&gt;

&lt;p&gt;18 to 60&lt;/p&gt;

&lt;p&gt;Test Cases:&lt;br&gt;
Test Input  Expected Result&lt;br&gt;
17  Invalid&lt;br&gt;
18  Valid&lt;br&gt;
19  Valid&lt;br&gt;
59  Valid&lt;br&gt;
60  Valid&lt;br&gt;
61  Invalid&lt;/p&gt;

&lt;p&gt;The focus is on:&lt;/p&gt;

&lt;p&gt;Minimum boundary → 18&lt;br&gt;
Maximum boundary → 60&lt;br&gt;
Just below and above boundaries&lt;/p&gt;

&lt;p&gt;Advantages of BVA&lt;br&gt;
Reduces the number of test cases&lt;br&gt;
Improves defect detection&lt;br&gt;
Efficient for numeric inputs&lt;br&gt;
Widely used in form validation testing&lt;/p&gt;

&lt;p&gt;Decision Table Testing&lt;br&gt;
Decision Table Testing is another black-box testing technique used when application behavior depends on multiple conditions.&lt;br&gt;
It helps testers capture combinations of inputs and corresponding outputs in a structured table format.&lt;/p&gt;

&lt;p&gt;Components of a Decision Table&lt;br&gt;
A decision table contains:&lt;br&gt;
ComponentDescriptionConditionsInput rules or criteriaActionsExpected outcomesRulesCombination of conditions&lt;/p&gt;

&lt;p&gt;Example of Decision Table Testing&lt;br&gt;
Consider an online banking login system.&lt;br&gt;
Conditions:&lt;/p&gt;

&lt;p&gt;Correct username?&lt;/p&gt;

&lt;p&gt;Correct password?&lt;/p&gt;

&lt;p&gt;Actions:&lt;/p&gt;

&lt;p&gt;Grant access&lt;/p&gt;

&lt;p&gt;Deny access&lt;/p&gt;

&lt;p&gt;RuleUsername CorrectPassword CorrectResult1YesYesAccess Granted2YesNoAccess Denied3NoYesAccess Denied4NoNoAccess Denied&lt;/p&gt;

&lt;p&gt;Benefits of Decision Table Testing&lt;/p&gt;

&lt;p&gt;Covers multiple combinations effectively&lt;/p&gt;

&lt;p&gt;Improves test coverage&lt;/p&gt;

&lt;p&gt;Useful for complex business logic&lt;/p&gt;

&lt;p&gt;Reduces missed scenarios&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Future of Manual Testing in AI&lt;/strong&gt;&lt;br&gt;
Artificial Intelligence is rapidly transforming the software testing industry. AI-powered tools can generate test cases, detect UI changes, analyze logs, and execute automated tests faster than ever before.&lt;br&gt;
However, manual testing is far from obsolete.&lt;/p&gt;

&lt;p&gt;*&lt;em&gt;How AI is Changing Testing&lt;br&gt;
AI introduces:&lt;br&gt;
*&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Self-healing automation scripts&lt;/p&gt;

&lt;p&gt;Intelligent test generation&lt;/p&gt;

&lt;p&gt;Predictive defect analysis&lt;/p&gt;

&lt;p&gt;Automated bug classification&lt;/p&gt;

&lt;p&gt;Visual UI testing&lt;/p&gt;

&lt;p&gt;Popular AI-driven testing tools include:&lt;/p&gt;

&lt;p&gt;Testim&lt;/p&gt;

&lt;p&gt;Applitools&lt;/p&gt;

&lt;p&gt;Functionize&lt;/p&gt;

&lt;p&gt;Mabl&lt;/p&gt;

&lt;p&gt;These tools improve speed and efficiency in repetitive testing tasks.&lt;/p&gt;

&lt;p&gt;Why Manual Testing Still Matters&lt;br&gt;
Despite AI advancements, human testers provide capabilities that AI cannot fully replace.&lt;br&gt;
Human Strengths in Testing&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Exploratory Thinking
Humans can investigate unexpected behaviors creatively.&lt;/li&gt;
&lt;li&gt;User Experience Evaluation
AI cannot fully understand emotions, usability, and customer satisfaction.&lt;/li&gt;
&lt;li&gt;Business Understanding
Manual testers understand real-world workflows and user expectations.&lt;/li&gt;
&lt;li&gt;Critical Thinking
Humans can identify unusual edge cases and ambiguous requirements.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The Future Role of Manual Testers&lt;br&gt;
The future of testing is not “Manual vs AI.”&lt;br&gt;
It is “Manual Testing + AI Collaboration.”&lt;br&gt;
Manual testers will increasingly focus on:&lt;/p&gt;

&lt;p&gt;Exploratory testing&lt;/p&gt;

&lt;p&gt;Risk-based testing&lt;/p&gt;

&lt;p&gt;AI-assisted testing&lt;/p&gt;

&lt;p&gt;Domain expertise&lt;/p&gt;

&lt;p&gt;Test strategy design&lt;/p&gt;

&lt;p&gt;User experience validation&lt;/p&gt;

&lt;p&gt;Skills Manual Testers Should Learn for the Future&lt;br&gt;
To stay relevant in the AI-driven era, testers should develop:&lt;br&gt;
Technical Skills&lt;/p&gt;

&lt;p&gt;API testing&lt;/p&gt;

&lt;p&gt;SQL&lt;/p&gt;

&lt;p&gt;Automation basics&lt;/p&gt;

&lt;p&gt;CI/CD concepts&lt;/p&gt;

&lt;p&gt;AI testing tools&lt;/p&gt;

&lt;p&gt;Soft Skills&lt;/p&gt;

&lt;p&gt;Analytical thinking&lt;/p&gt;

&lt;p&gt;Communication&lt;/p&gt;

&lt;p&gt;Problem-solving&lt;/p&gt;

&lt;p&gt;Business analysis&lt;/p&gt;

&lt;p&gt;Conclusion&lt;br&gt;
Manual testing remains a foundational part of software quality assurance. Techniques like Boundary Value Analysis and Decision Table Testing help testers design efficient and high-quality test cases.&lt;br&gt;
Although AI is revolutionizing software testing, human intelligence, creativity, and domain understanding continue to be irreplaceable. The future belongs to testers who combine manual testing expertise with AI-powered tools and modern testing practices.&lt;br&gt;
Organizations will continue to need skilled testers who can think critically, understand user behavior, and ensure software delivers exceptional user experiences.&lt;br&gt;
The evolution of testing is not about replacing humans—it is about empowering them with smarter technologies.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
