How to Reduce Manual QA, Increase Product Quality, and Iterate Faster

Product development is a very complex task involving ideation, product and project management, design, software engineering, and testing. As you develop more features, manually testing every feature becomes impossible over time. The number of bugs increases and the development cycle slows down. This post demonstrates how to automate your quality assurance efforts to increase the quality of your product and iterate faster.

Why reducing manual QA

Let’s take a look at a typical software development cycle with only manual QA.

Let’s say you have two teams, a software development team, and a QA team. Software engineers only write application code, the QA team tests the developed product. Once a new release is developed under phase 1, the software goes to the QA team. The QA team executes manual tests by going through the user interface and making sure the product works right in phase 2. If a bug is found in phase 3, the QA team tells the development team how to reproduce the bug. Sometimes a product manager is involved to prioritize bug fixes to go in certain releases. As you can see, it’s a complex process involving communication between developers and QA engineers on a regular basis. In addition to it, there are only so many manual tests that a human can execute per day.

Manual QA doesn’t scale well

As mentioned previously, what happens after you develop more features, a number of manual tests increases and teams usually make one of the following decisions. They either hire more QA staff or execute fewer tests. Unfortunately, most of the companies I’ve seen go with the second approach which causes bugs, loss of customers, and lost revenue.

There is another way, have computers execute tests for you.

What are automated tests

When you write a piece of software, you want to make sure it works correctly. Let’s say, you implemented a login screen in your mobile app. After you’re done with your task, you may go ahead, stand up the app and try logging into the system. After you move on to the next feature, you test the next feature in a similar way. As you develop more features, you can’t possibly test all features you developed to date. It will simply take you too much time to test every feature manually every time you change the code. What ends up happening is that you break previously developed functionality without even realizing it.

That’s where automated tests come in. An automated test is a piece of code that executes a test. You write it once and execute it with one command any number of times you want. In the example of the login screen, you write a test that stands up the app and taps into a field with an invisible finger, enters some information, and checks that the user is successfully logged in.

As you can see from the following diagram, all 3 steps of software development happen during the same development phase. It involves fewer people, lowers communication overhead, and increases quality (computers are more consistent at running tests than humans).

How to automate your tests

Product Managers to provide clear requirements

Developing and trying to automate an undefined product is very expensive. If requirements constantly change, both, the application code and automated tests need to be constantly rewritten. In addition to it, it’s tough to identify the best testing strategy if you don’t know what kind of product you’re building. Make sure your product manager provides clear acceptance criteria for every user story.

Engineers write unit and integration tests

The problem with a manual test is that you need to have a human executing it every single time which is expensive. If you automate your test, you spend a little more effort upfront by writing it. Then, you have your continuous integration servers running tests for you as many times and as often as you would like.

Don’t automate every single thing

It’s a delicate balance between what makes sense to automate and what doesn’t. You have to compare time cost vs benefit. In some cases, an integration test gives you the most bang for the buck. In some cases, it’s easier to test an isolated piece of logic with a unit test instead.

QA engineers test interactions between systems

If your product consists of multiple systems (like a mobile front end, a web front end, multiple back-end services, etc), it’s important to test all pieces working together. Software engineers make sure every system is functioning correctly. However, it doesn’t really matter if each piece works as expected if the system as a whole doesn’t work. Cross-functional tests are the toughest to write. Make sure you automate the tests you execute most often manually first to be more efficient.

Conclusion

Automated tests are a great way to increase quality and iterate faster. If you keep your tests healthy, you can ship your software to production at any time. It allows you to move quicker, iterate and learn faster. Writing automated tests is an important skill for every software engineer. It takes some time to develop and it pays off big time. Every system is different. That’s why you need to constantly challenge yourself with writing fewer tests that cover more functionality.

Originally posted on alextamoykin.com


Get in touch

Need a hand automating manual tests?
Don't hesitate to ask, we're here to help.

top50.png logo
goodfirms.png logo