Skip to content

Iptv Assist

Learn More from us

Menu
  • HOW TO
  • Firestick
  • Chromecast
  • PC Apps
  • Lg Smart TV
  • IPTV Services
  • Automation Testing
  • Smart TV
  • Software Testing Tools
  • Contact Us
Menu

How to Use Poka-Yoke (Mistake Proofing) Technique to Improve Software Quality

Posted on January 22, 2023

Best Iptv Service Provider 2023 With 40k+ Channels And 100k+ VOD . 24/7 Suppport . Paypal Supported

Software Engineering is a discipline that aims at producing high-quality software through a systematic, well-planned approach to software development.

Best Iptv Service Provider 2023 With 40k+ Channels And 150k+ VOD . Hurry Up

It contains many good practices, following the standards to achieve the quality product. The three main phases of Software Development are Analysis – Design – Implementation. To accomplish high-quality software, it is essential to produce a defect-free product.

Recommended IPTV Service Providers

  1. IPTVGREAT – Rating 4.8/5 ( 600+ Reviews )
  2. IPTVRESALE – Rating 5/5 ( 200+ Reviews )
  3. IPTVGANG – Rating 4.7/5 ( 1200+ Reviews )
  4. IPTVUNLOCK – Rating 5/5 ( 65 Reviews )
  5. IPTVFOLLOW -Rating 5/5 ( 48 Reviews )
  6. IPTVTOPS – Rating 5/5 ( 43 Reviews )

 

Poka yoke Technique

What You Will Learn:

  • Software Process Engineering
    • Defect Management
    • What is Poka-Yoke?
    • How Does Poka-Yoke Technique Work?
    • Categories of Poka-Yoke
    • What are the Qualities of a Good Poka-Yoke Process?
    • Need for Poka-Yoke in Software Design Phase
  • Conclusion

Software Process Engineering

Defect Management

A defect is an unexpected or undesired behavior that occurs in the product. Anything related to a defect is a continual process, not a particular state.

Finding and fixing defects in the early stages of Software Development reduces time, rework and money. Finding the defect in later stages always costs multiple times more than the early stages. It enhances quality by adding reliability, portability, maintainability, etc.

Hence it is advisable that every company should go with a Defect management system and defect management team at every stage of the development to attain good quality in products and to gain customer confidence.

One such mistake-proofing technique is POKA-YOKE.

What is Poka-Yoke?

It’s a quality assurance process introduced by Japanese engineer Shigeo Shingo. This term is used in the Japanese language as “Poka” meaning mistake and “Yoke” meaning prevent i.e. mistake preventing or mistake-proofing technique.

The purpose of Poka-Yoke is to develop processes to reduce defects by avoiding or correcting (design to show alerts or warning messages to the user) mistakes in early design and development phases. This technique is mostly used in manufacturing industries but now this effective technique is also adapted to software development processes as well.

Poka-Yoke example from the manufacturing industry

Poka yoke example from manufacturing

A good example of the Poka-Yoke design from the manufacturing industry – SIM card slots in cell phones are designed in such a way that the user is allowed to insert SIM cards in a correct way only. There is no chance for the user to make a mistake while putting the SIM card on a cell phone. This makes the design mistake proof.

Poka-Yoke example from a Software Application

Poka Yoke Software Example

The perfect example of the Poka-yoke process in the Software Application is – Gmail email attachments feature – when you type the word “find attached” while composing a new email and try to send it without attaching a file Google will show you a pop-up reminder saying that you used words “find attached” in your email but did not attach any files, do you still want to continue sending?

How Does Poka-Yoke Technique Work?

Steps to Implement the Poka-Yoke Process:

Below are a few steps to design and implement a process to prevent Software Defects:

  •  List all user scenarios and end-to-end test cases for the application.
  •  Analyze all these user scenarios by asking the 5-whys questions to understand the ways these scenarios can fail.
  • Once you identify the ways these user scenarios can be wrong, you can design and apply a Poka-Yoke technique to avoid the possible problems (For Example, this design could be a simple Unit test to check if any function that was written is working properly or not).
  • Make sure the technique is designed to avoid defects that are working properly by giving errors or warning messages for incorrect input or handling of user scenarios.
  • Once the trial is passed, add this technique to the list of Poka-Yoke processes to be performed each time on a new release/build.  (In the above Unit testing example, once the unit test is written to check the function code, check if it is working for positive and negative values. When this test passes, add it to the repository of “Unit tests” to be executed each time any changes are made to the relevant modules)
  • Measure the success of this Poka-Yoke process. Check if this technique has really prevented or caught defects when happening.

Categories of Poka-Yoke

  • Defect Prevention
  • Defect Detection

Defect Prevention is the most important activity in SDLC. This method is used to identify all possible issues and actions needed to eliminate those issues. Many software defects can be prevented in the design phase itself.

The Quality Assurance team can help to prevent these defects by reviewing the Software Requirement Specification documents. All issues identified at this stage are addressed in the software coding phase and prevented from being carried to later stages.

The manufacturing and software industry examples provided above are good examples of defect prevention techniques.

Defect Detection is the most common task for quality assurance teams. QA teams use various approaches and strategies for executing test cases effectively. Defects are detected by many other testing methods like Smoke and Exploratory testing.

What are the Qualities of a Good Poka-Yoke Process?

  • Poka-Yoke should be simple to create and maintain. It should be easy to handle and cost-effective. Maintaining a complex Poka-Yoke is time-consuming and often results in issues if not maintained properly.
  • Poka-Yoke should be designed early in SDLC so that it can detect issues quickly.
  • Good Poka-Yoke should be accurate enough to find issues when they occur.
  • A good Poka-Yoke should be designed in such a way that it should stop the most common issues occurring in the software.
  • It should be part of the Software Design and Coding process.

Need for Poka-Yoke in Software Design Phase

To develop quality software, it is important to design it according to the user’s expectations. The user should be able to use/handle the software with ease without making any costly mistakes.

Poka-Yoke examples in design and quality

#1) An example of missing attachment files while composing an email using Gmail.

#2) Some websites show the password strength indicator to show password strength. It also guides users to use a strong password with the combinations of characters and numbers.

Poka yoke example 2

#3) Google search engine feature to auto-suggest spelling corrections for the user search query. This helps the users to avoid making inadvertent mistakes.

Poka yoke example 3

#4) Banking websites use a double text field feature to accept sensitive information like passwords or account numbers. The second text field is usually encrypted to avoid making any mistakes while providing the input value and to check if both the text field values match.

The need for Poka-Yoke in Software Development

From countless industry examples, it’s now well known that the cost of fixing a defect after product release is many times greater than fixing it in the development cycle.

Further reading =>> What is the Cost of Quality (COQ)?

The best solution to avoid post-release issues is introducing the Poka-Yoke techniques which could catch defects in early development phases making it cheaper to fix. The Poka-Yoke process implementation largely depends on the Tester’s ability to capture and eliminate the issues.

Poka-Yoke examples in Software Development

  1. Unit testing is one of the most effective means of mistake-proofing software development.
  2. Having validation of Poka-Yoke in the kit is always a good suggestion for developers. Validation mistakes should be handled in your code. These validation issues should be revisited and updated periodically.
  3. A common and most effective Poka-Yoke is to hire the right candidates to mistake-proof your software.

Conclusion

Making mistakes is OK; just don’t make the same mistake again and again. To avoid making the same mistakes again there should be some checks or processes in place. Poka-Yoke techniques are developed to solve this problem.

Article References:
  • Shigeo Shingo, Zero Quality Control
  • Wikipedia reference
  • Boris Beizer, Software Testing Techniques, 2nd ed. Van Nostrand Reinhold

About Author: This is a guest post by Nataraj Kanchyani. He is working as a Senior Software Engineer-Testing at Centurylink Technologies India Pvt Ltd, Bangalore.


Do you have any experience working on this technique? Or have you ever worked on developing such defect prevention and detection processes? Let us know in the comments below.

Related

Best Iptv Service Provider 2023 With 40k+ Channels And 150k+ VOD . Hurry Up

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Recent Posts

  • IPTV List: Best iptv lista 2023
  • IPTV Premium: Best Premium IPTV Service Provider List And Benefits
  • Nikon IPTV Review: Over 10,000 Live Channels for $12/Month
  • Iptvwings. Com Review: +18000 Live IPTV Channels ,+70000 Movies, +40000 TV show For $15/1 month
  • IPTVUNO Review: More Than 16000 Live TV channels, 55,000 Movies & VOD For $15/Month

Recent Comments

  1. IPTV List: Play lista iptv 2022 - Iptv Assist on Best IPTV Player in 2023 for Watching Live TV
  2. Cola IPTV – Over 18,000 Live Channels for $12/Month - Iptv Assist on FileLinked – How to Install on Firestick/Fire TV and Android Devices
  3. Cola IPTV – Over 18,000 Live Channels for $12/Month - Iptv Assist on 50+ Best IPTV Service Providers for Streaming Live TV 2023
  4. XoomsTV IPTV – Over 11,000 Channels & VOD for Under $13/Month on Best VPN for IPTV in 2023 and How to Install on Firestick/Android
  5. Voodoo Streams IPTV Review – Over 12,000 Channels for $11/Month - Iptv Assist on Dynasty TV IPTV Review – Over 6,000 Channels for $10/Month

Archives

  • January 2023

Categories

  • Activate
  • Agile Testing
  • Alternatives
  • Android
  • APK
  • Apple TV
  • Automation Testing
  • Basics of Software Testing
  • Best Apps
  • Breakfast Hours
  • Bug Defect tracking
  • Career in Software Testing
  • Chromebook
  • Chromecast
  • Cross Platform
  • Database Testing
  • Delete Account
  • Discord
  • Error Code
  • Firestick
  • Gaming
  • General
  • Google TV
  • Hisense Smart TV
  • HOW TO
  • Interview Questions
  • iPhone
  • IPTV
  • IPTV Apps
  • Iptv Service SP
  • IPTV Services
  • JVC Smart TV
  • Kodi
  • Lg Smart TV
  • Manual Testing
  • MI TV
  • Mobile Testing
  • Mod APK
  • newestiptv.com
  • News
  • Nintendo Switch
  • Panasonic Smart TV
  • PC Apps
  • Performance Testing
  • Philips Smart TV
  • PS4
  • PS5
  • Python
  • QA Certifications
  • QA Leadership
  • QA Team Skills
  • Quality Assurance
  • Reddit
  • Reviews
  • Roku
  • Samsung Smart TV
  • Screenshot
  • Selenium Tutorials
  • Sharp Smart TV
  • Skyworth Smart TV
  • Smart TV
  • Soft Skills For Testers
  • Software Testing Templates
  • Software Testing Tools
  • Software Testing Training
  • Sony Smart TV
  • Sports
  • Streaming Apps
  • Streaming Devices
  • Tech News
  • Test Management Tools
  • Test Strategy
  • Testing Best Practices
  • Testing Concepts
  • Testing Methodologies
  • Testing News
  • Testing Skill Improvement
  • Testing Tips and Resources
  • Toshiba Smart TV
  • Tutorials
  • Twitch
  • Types of Testing
  • Uncategorized
  • Vizio Smart TV
  • VPN
  • Web Testing
  • What is
  • Xbox
©2023 Iptv Assist | Design: Newspaperly WordPress Theme