Skip to main content
Version: 2.0.0

Fullscreen Capture Method Overview

Test your app as your user sees it

Taking a full-screen screenshot can provide a more comprehensive view of the user experience, including system UI elements such as notifications, status bar, and navigation buttons. A full-screen screenshot can help identify bugs that may be related to system UI elements or interactions with the operating system. A full-screen screenshot can help identify compatibility issues with different Android versions, screen sizes, and device manufacturers, including how the app interacts with system UI elements.

A full-screen screenshot can provide valuable insights into the app's behavior and help developers improve the app's performance, compatibility, and user experience.

Capture the entire device screen, including system UI, dialogs and menus

The Testify Fullscreen Capture method can be used to capture UI elements presented outside of your root view. This includes elements rendered in a different Window such as dialogs, alerts, notifications, or overlays.

How it works

Testify Fullscreen Capture Method uses UiAutomator's built-in screenshotting capability to capture a Bitmap of the entire device.

The bitmap will be generated from a PNG at 1:1 scale and 100% quality. The bitmap's size will match the full device resolution and include all system UI such as the status bar and navigation bar.

As the system UI content is highly variable, you can use ScreenshotRule.excludeStatusBar and/or ScreenshotRule.excludeNavigationBar to ignore the status bar and navigation bar, respectively.

Though the PNG is intended to be lossless, some compression artifacts or GPU-related variance can occur. As such, it is recommended to use a small tolerance when capturing fullscreen images.

You can set a comparison tolerance using TestifyConfiguration.exactness.