State of AI applied to Quality Engineering 2021-22

Section 4.1: Automate & See

Business ●●●○○
Technical ●●○○○

Listen to the audio version

Download the "Section 4.1: Automate & See" as a PDF

Use the site navigation to visit other sections and download further PDF content

By submitting this form, I understand that my data will be processed by Sogeti as described in the Privacy Policy.*

Introduction

This section “Automate & See” focuses on the usage and application of Computer Vision in the field of Quality Engineering.

Despite ongoing efforts to “shift left” testing, UI test automation has remained largely a pipe dream. For in-sprint UI test automation, tests need to be implemented in that tiny sliver of time between when developers complete the final UI code (with a successful build) and when the sprint is supposed to be completed. Guess what? That rarely happens. Within the sprint, teams can certainly tackle human UI testing (a.k.a. exploratory testing.) But automated UI testing? That’s often delayed until a later sprint…and/or scrapped altogether.

UI testing is quite intuitive

UI testing is really the most intuitive testing approach imaginable. Just find someone who can represent the target user and let them poke around in the interface they use for their daily work: the UI. It’s natural. It’s intuitive. And it’s still the predominant method used for testing most software releases today.

This human-driven testing can never stop. Having smart testers creatively explore the UI using their creative, analytical minds to uncover issues that disrupt the user experience is absolutely essential. But it’s also essential to perform a level of regimented, routine checking with each change to ensure the modifications don’t introduce strange side effects. Performing such tedious checking at the required frequency and speed would be torture for human testers. Hence, the push towards test automation.

But UI test automation is a pain

You would think, then, that the natural place to start with test automation would be to automate the most natural of all testing: humans interacting with the UI. Not so. UI test automation is actually one of the most dreadfully difficult test automation approaches.

Tests automated at the UI level historically have a fair share of issues. They’re slow to run. They’re fast to break. They’re somewhat technical and tedious to create even for common modern technologies like web and mobile. They’re much more difficult to create when you have to deal with custom desktop applications, packaged applications, extremely old technologies, extremely new technologies, or Citrix/remote applications. And creating automated UI tests typically requires a fully-implemented—and stable—UI.

Clearly, there are a lot of issues with UI test automation. But if you really think about these issues, it all boils down to one thing: the test automation doesn’t think like a human:

  • A human can interact with an application’s UI quite rapidly (the human eye can process 24 images per second).

  • A human is not derailed by interface changes. Something like a reimplemented drop-down menu or a new way to display results won’t phase a human tester at all.

  • A human brain can interact with extremely old technologies (like mainframes and COBOL-based apps) and whatever new technology happens to be released tomorrow. And if your application is migrated from a monolith to a microservices architecture, the same tester’s brain can still test its UI in exactly the same manner.

  • A human tester might not even know the difference if the application is installed on their machine or is accessed via desktop-virtualization (Citrix). They can test its UI just the same.

  • A human doesn’t really need to wait for a fully-implemented (and stable) UI implementation. They can start working on their tests the moment a rough prototype is available. And they can start performing tests as soon as the UI is at least kind of ready. If the underlying technical implementation is still shifting a bit, it’s not necessarily a showstopper.

Make UI test automation more human

So, if the key problems with UI test automation stem from the fact that human intelligence is more adaptable than test automation, why not try to address those problems with the next best thing: artificial intelligence. By tapping the power of AI, we can achieve UI test automation that’s as smart and resilient as a human—but as efficient and scalable as a machine.

For this to work, the technology must learn how to understand and navigate user interfaces in the same way that a human can. For example, it needs to know that a drop-down is a drop-down just by “looking” at it. With that accomplished, you—well, any human, really—can define test automation by simply providing a natural language explanation of what business process should be tested (e.g., “Enter 10,000 in the list price input, click the confirm button, then … “). AI-driven test automation can take it from there. There’s no need to deal with shadow DOMs, web assemblies, and the like. Emulated tables on SAP can be automated without any special customization. It’s not going to fail the next time there’s a minor UI tweak, and you won’t have to rebuild your tests if the application is reimplemented in a new technology.

In terms of shift left, you can start implementing your UI tests as soon as the team sketches out a rough prototype or mockup. Advanced UX designs like this are a great starting point:

UI tests of advanced UX designs

 

You really could start anywhere though. Even more rudimentary whiteboard or napkin sketches would enable you to start on UI test automation without waiting on the actual implementation. This means less crunch time each release, and ultimately eliminates the ripple effect of testing delays, unfinished stories, and “hardening sprints.” And it enables an interesting flavor of TDD: start running these automated UI tests before implementation begins, then have developers write code that makes them pass.

The catch: speed and accuracy

The catch? It’s not so easy to make UI test automation so easy. Two things to watch out for: accuracy and speed. For this to work, the technology must be able to accurately recognize and interact with UI controls that it’s never seen before. This requires visual object detection as well as optical character recognition (OCR). And that’s the easy part; the difficult part is doing this at speed.

For a while now, AI-driven automation solutions have been struggling to come close to the speed of human processing. On average, you’re looking at tools processing 1.8 images per second, while humans can handle 25. You don’t need automation that mimics human speed, though—you need to beat it. If you want this UI testing to run as part of your continuous testing as a core part of your CI/CD process it needs to vastly surpass the speed of the human eye and the human brain.

The rise of Computer Vision

Since its inception in the 1950s, it has been an extremely expensive and sophisticated technology. The field of Computer Vision emerged with research along three independent areas of study, in ascending order of complexity: replicating the eye, replicating the visual cortex and replicating the rest of the brain.

The goal of computer vision is to educate computers to see, comprehend and interpret the content and meaning of digital images, in the same - if not better - way that humans do. As further introduced by Adobe in this 2020 article, Computer Vision already outperforms humans in controlled environments for tasks such as medical imaging, circuit board inspections, and facial recognition.

Recreating human vision is a collection of problems, each of which is dependent on the others. More precisely, computer vision is the process of automatically extracting, analyzing, and comprehending usable information from a single image or sequence of images.

By the end of this section, you will have a better understanding of how Computer Vision may assist us in addressing our test automation challenges.