<?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: arunsakthivel31</title>
    <description>The latest articles on DEV Community by arunsakthivel31 (@arunsakthivel31).</description>
    <link>https://dev.to/arunsakthivel31</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%2F3652608%2Fa2f9d7e7-2776-45f3-9c08-f9264e082386.png</url>
      <title>DEV Community: arunsakthivel31</title>
      <link>https://dev.to/arunsakthivel31</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/arunsakthivel31"/>
    <language>en</language>
    <item>
      <title>Manual testing techniques</title>
      <dc:creator>arunsakthivel31</dc:creator>
      <pubDate>Mon, 08 Dec 2025 22:13:43 +0000</pubDate>
      <link>https://dev.to/arunsakthivel31/manual-testing-techniques-30d8</link>
      <guid>https://dev.to/arunsakthivel31/manual-testing-techniques-30d8</guid>
      <description>&lt;h1&gt;
  
  
  Common Manual testing techniques
&lt;/h1&gt;

&lt;blockquote&gt;
&lt;h4&gt;
  
  
  Boundary Value Analysis
&lt;/h4&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;code&gt;Boundary Value Analysis&lt;/code&gt; It's a focus on testing the boundary values or limits of the ranges. It helps to identify the defects at the edges of the given input ranges. For example : Password must in 6-10 characters&lt;br&gt;
5 --  Fail&lt;br&gt;
6 --  Pass&lt;br&gt;
7 --  Pass&lt;br&gt;
9 --  Pass&lt;br&gt;
10 -- Pass&lt;br&gt;
11 -- Fail&lt;/p&gt;

&lt;blockquote&gt;
&lt;h4&gt;
  
  
  Equivalence Partitioning
&lt;/h4&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;code&gt;Equivalence Partitioning&lt;/code&gt; In this technique,divides the input data into the valid and invalid partitions. For Example Age limit of 18 to 60&lt;br&gt;
Below 18 age  -- Invalid&lt;br&gt;
18 to 60      -- Valid&lt;br&gt;
Above 60      -- Invalid&lt;/p&gt;

&lt;p&gt;16 -- Fail&lt;br&gt;
22 -- Pass&lt;br&gt;
61 -- Fail&lt;/p&gt;

&lt;blockquote&gt;
&lt;h4&gt;
  
  
  Decision Table Testing
&lt;/h4&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;code&gt;Decision Table Testing&lt;/code&gt; In this techniques, used a table format to outline of various input combination and their expected outputs, ensure the all the cases are covered.&lt;/p&gt;

&lt;p&gt;Rule : 1&lt;br&gt;
If the Email ID and Password are correct, the mail will logged in&lt;/p&gt;

&lt;p&gt;Rule : 2&lt;br&gt;
If the Email ID is correct and Password is wrong, Error message populated.&lt;/p&gt;

&lt;p&gt;Rule : 3&lt;br&gt;
If the Email ID is wrong and Password is correct, Error message populated&lt;/p&gt;

&lt;p&gt;Rule : 4&lt;br&gt;
If the Email ID and Password are wrong, Error message populated.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fb38qt7y44q0i7o43sjzf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fb38qt7y44q0i7o43sjzf.png" alt=" " width="800" height="152"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;h4&gt;
  
  
  The Future of Manual Testing in the Age of &lt;strong&gt;AI&lt;/strong&gt;
&lt;/h4&gt;
&lt;/blockquote&gt;

&lt;p&gt;In most of the companies are using the automation testing for identifying the bugs quickly, testing time reduced and the needed the minimum number of tester. However there are some test cases which can't replaced by automation testing. The AI techniques and automated tools can't reproduced the logical thinking, Innovation, Objective analysis of human.&lt;br&gt;
Automated tools executed the code level performing based on the predefined logic. Manual testing techniques is not disappearing. AI techniques can be performed effective for repeat tasks, complexity task, comparing or analyzing the large dataset and the experienced tester have ensure the quality of product&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>testing</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
