A sample repo to introduce screenshot testing in Android.
It contains a wide variety of
examples written with different screenshot testing libraries for a better comparison among them.
These examples include tests for screens like the one above (module :recyclerviewscreen
)
Warning
It is configured with AGP 8.5.0, so it requires Android Studio Koala or higher!
Android-screenshot-testing-playground won a Google Open Source Peer Bonus
award in 2024, whose winners were listed in Google Open Source blog. Thanks to everybody who has found this project insightful and helped get
Android-screenshot-testing-playground where it is today.
Thanks to Screenshotbot for their support!
By using Screenshotbot instead of the in-build record/verify modes provided by most screenshot
libraries, you'll give your colleages a better developer experience, since they will not be required
to manually record screenshots after every run, instead getting notifications on their Pull
Requests.
Thanks to EmergeTools for their support!
Emerge automatically generates and diffs snapshots on your behalf, eliminating complicated CI setup
with Emulators, file storage, and golden/diffing management.
This repo showcases how to snapshot test Dialogs, ViewHolders, RecyclerViews, Activities, Fragments, Jetpack Compose & Composable @Previews!
And even better: It is ready for you to add your own examples and try screenshot testing with many
libraries on your own!
In order to help find the desired examples, the app is modularized accordingly:
:dialogs
: Showcases how to screenshot test dialogs created with DialogBuilder from the android View system. Examples for Compose dialogs will be added as well:recyclerviewscreen
: Contains screenshot tests for Activities, Fragments, ViewHolders and RecyclerViews.:lazycolumnscreen
: Includes Jetpack Compose screenshot tests examples, as well as examples for Activities & Fragments.:lazycolumnscreen-previews
: Includes screenshot tests examples generated from @Previews
Each of these modules contains submodules. Each submodule name corresponds to a screenshot testing library. You'll find screenshot test examples with that library in it.
As of June 2024, there are many screenshot testing libraries that facilitate automated screenshot testing, namely:
- Google Compose Preview Screenshot Testing tool
- Cashapp Paparazzi
- Roborazzi from takahirom
- Dropbox Dropshots
- Shot from pedrovgs
- Ndtp Android-testify 1
- Facebook screenshot-tests-for-android
- QuickBird Snappy
All of them have their own pros and cons. The ultimate goal of this repo is to help you choose the libraries that better meet your project's needs!
In order to do that, it contains the same/similar examples but written with different libraries:
- Compose Preview Screenshot Testing tool (for now, only under
:lazycolumnscreen-previews
) - Paparazzi
- Roborazzi
- Dropshots (coming to
:lazycolumnscreen-previews
soon) - Shot (coming to
:lazycolumnscreen-previews
soon) - Android-testify (coming
to
:lazycolumnscreen-previews
soon)
BONUS: It also contains examples of Cross-Library Screenshot Tests: the very same screenshot tests running with multiple libraries, namely: Paparazzi, Roborazzi, Shot, Dropshots & Android-Testify. For that it uses Android UI Testing Utils 2.x.x
You can read more about it in this blog post series:
- A World Beyond Libraries: Cross-Library Screenshot tests on android
- Write Once, Test Everywhere: Cross-Library Screenshot Testing with AndroidUiTestingUtils 2.0.0
More screenshot test examples, as well as examples with other libraries will be continuously added.
1 Android-testify was started at Shopify and changed to Ndtp in summer 2022.
- Before you start...
- Comparing screenshot testing libraries
- Recording and verifying screenshots
- Parameterized screenshot tests
- Filtered parameterized screenshot tests
- What is coming next
- Code attribution
- Attribution of icons in the app
I strongly recommend to have a look at my blog series on snapshot testing
If reading is not your thing, you can always watch my 2021 Droidcon tech-talks on the matter:
For instrumented screenshot testing (which excludes Paparazzi), I've been using emulators running API 27-31. Moreover, if you are running screenshot tests on a Windows machine, beware that Shot had some issues in the past, although they should be already solved.
Instrumented screenshot tests might have issues due to running animations at the moment the snapshot are taken.
In order to keep animations disabled, this project uses testOptions { animationsDisabled = true }
in the gradle file. Unfortunately, it does not work on all APIs (e.g. API 26 or lower). Therefore,
if you
come across some issues, disable animations on the emulator via settings before running the
screenshot tests.
Need for emulators
Google's brand new Compose Screenshot Testing tool, as well as Roborazzi & Paparazzi let you run screenshot tests on the JVM, without emulators/devices. I'm still evaluating Roborazzi and Compose Screenshot Testing tool, so this section refers to Paparazzi only, and will be extended in the future.
Although running screenshot tests on the JVM comes with some speed wins, its main advantage is that one doesn't have to deal with emulator and their problems, such as:
- Emulators eventually freezing/crashing (specially on CI)
- "Insufficient storage" exception
- "Out of Memory" exceptions
Rendering elevation in generated screenshots
Paparazzi uses PixelCopy to generate bitmaps out of Views. Most on-device screenshot testing frameworks use Canvas as default1 to generate bitmaps, what ignores elevation.
This is specially noticeable in API 31:
However, on-device screenshot testing libraries also accept bitmaps as arguments of their take/verify screenshot methods.
// Shot
compareScreenshot(
bitmap = pixelCopyBitmapFromView
)
// Dropshots
dropshots.assertSnapshot(
bitmap = pixelCopyBitmapFromView
)
Therefore, they could render elevation by converting views to bitmaps using PixelCopy.
Android UI Testing Utils provides
the drawToBitmapWithElevation()
method for that.
And the resulting screenshot would render elevation
You can find such examples in this repo, under the bitmap
folder under any :dropshots
, :shot
and :android-testify
module.
1 Shot doesn't use Canvas when using compareScreenshot(composeRule)
, so those
screenshots draw elevation. It does use Canvas for Views, Activities, Fragments & Dialogs though.
Screenshot testing Activites and Fragments
ActivityScenarios and FragmentScenarios are compatible with Robolectric, which stubs the Android framework to run instrumented tests on the JVM. Therefore, we could also use Robolectric to run Activity/Fragment screenshot tests on the JVM with Paparazzi, theoretically. However, it crashes in doing so with some Byte Buddy exception at runtime, likely due to some clashes with Robolectric.
Roborazzi, on the other hand, is built on top of Robolectric, so ActivityScenarios and FragmentScenarios are compatible with it.
This means, only on-device screenshot testing frameworks & Roborazzi can be used for snapshoting Activites/Fragments. Only Paparazzi cannot.
Rendering problems
Paparazzi relies on layoutlib to record screenshots. That's a private library used to render the xml layouts and Compose previews in Android Studio. This comes with some limitations. For example,
- Composables using NavHost cannot be rendered in the @Preview, and therefore, Paparazzi cannot either, for now.
- Renders incorrectly UI elements that use multiple
View.animate()
and/orObjectAnimator.ofPropertyValuesHolder()
for animations. You can check it out yourself by running./gradlew :recyclerviewscreen:paparazzi:recordPaparazziDebug
in this repo. For instance:
View.animate() | View.animate() + ObjectAnimator |
---|---|
On the other hand, on-device screenshot testing has its own issues as well. Most of them happen due to the hardware accelerated drawing model. This happens for example, when running the same test on machines with different architectures1 e.g. Macbook Pro with M1 chip vs. Intel x64. It might cause issues related to:
- Shadows & elevation
- Font smoothing & anti-aliasing
- Image decompression and rendering
- Alpha-blending.
Nevertheless, you can solve/mitigate such issues as follows:
- Hardware acceleration can be enabled/disabled at different levels e.g. Activity, Window, View... to reduce such issues. Keep in mind that this affects how the screenshots are rendered.
- Most libraries provide a "tolerance/maxPixelDiff" mechanism to set some error threshold when verifying the screenshot. Although it isn't a real fix, you could use it to mitigate such issues. There is an interesting blog on android-testify about this.
- The safest solution is to generate the screenshots only on the CI, then pushing them in a new commit on your PRs. Same goes for "verify". This ensures that the screenshots are always generated using the same hardware.
Read more about hardware acceleration in the official Android documentation
1 There is evidence of such problems in Paparazzi as well, when running tests on different operating systems, as stated here
Stability: Android Gradle Plugin and Compose runtime updates
Unfortunately, any Android Gradle Plugin (a.k.a. AGP) or Compose update can make your working Paparazzi screenshot tests break... or fix those broken. For instance:
- When updating to Compose runtime 1.4.x: this issue & the corresponding fix
- Before updating AGP to that required by Android Studio Dolphin: Compose Dialog rendering issue
Let's summarize.
Pros
- No emulators needed.
- Faster
- No emulator troubleshooting
- Uses PixelCopy by default to generate bitmaps out of the views. Thus, screenshots render UI elements with elevation (e.g. shadows)
Cons
- Cannot screenshot Activities or Fragments
- Rendering problems
- Incorrect screenshots for UI components that call View.animate() or ObjectAnimator.ofPropertyValuesHolder() several times.
- Only renders what the Compose @Previews can display
- Fragile to AGP & Jetpack Compose updates
For screenshot testing, 2 tasks are required:
- Record. When executed, it generates a snapshot file for each test that will be taken as reference.
- Verify. When executed, it generates a snapshot file for each test that will be compared, pixel by pixel, with the one taken as reference when recording.
All Screenshot testing frameworks provide at least these 2 tasks.
Warning
All the commands in the description are for MacOS. You might need to adjust them depending on the operating system of your machine.
By default, Android Orchestrator is disabled. That's because it makes the screenshot test run much slower, while adding no value. Android orchestrator might make sense when running screenshot test that might influence each other. For instance, when screenshot testing Activities or Fragments where we fetch some data.
For screenshot test that inflate a view and populate it with some data before the snapshot, it makes little sense.
However, you can run Dropshots, Shot and Android-testify screenshot tests with Android Orchestrator
in this repo by adding the following to the corresponding command:
-PuseOrchestrator
For instance, to record with Dropshots:
./gradlew :dialogs:dropshots:connectedAndroidTest -Pdropshots.record -PuseOrchestrator
The brand new Google's screenshot testing tool! No emulators required.
The tests are auto-generated! Just place your previews in the new "screenshotTest" source. For now, it cannot auto-generate tests from previews in the "main" source
Run the following gradle tasks
- Record:
./gradlew :lazycolumnscreen-previews:compose-screenshot:recordPaparazziDebug
. - Verify:
./gradlew :lazycolumnscreen-previews:compose-screenshot:verifyPaparazziDebug
.
No emulators required. Run the following gradle tasks depending on the module:
- Record:
./gradlew :module_name:paparazzi:recordPaparazziDebug
. For instance:./gradlew :dialogs::paparazzi:recordPaparazziDebug
./gradlew :recyclerviewscreen:paparazzi:recordPaparazziDebug
./gradlew :lazycolumnscreen:paparazzi:recordPaparazziDebug
./gradlew :lazycolumnscreen-previews:paparazzi:recordPaparazziDebug
- Verify:
./gradlew :module_name:paparazzi:verifyPaparazziDebug
. For instance:./gradlew :dialogs:paparazzi:verifyPaparazziDebug
./gradlew :recyclerviewscreen:paparazzi:verifyPaparazziDebug
./gradlew :lazycolumnscreen:paparazzi:verifyPaparazziDebug
./gradlew :lazycolumnscreen-previews:paparazzi:verifyPaparazziDebug
Note
You can record/verify the tests in parallel with the gradle property -Pparallel e.g../gradlew :module_name:paparazzi:recordPaparazziDebug -Pparallel
Please note that running tests in parallel is only worthwhile when dealing with a large number of tests.
No emulators required. Run the following gradle tasks depending on the module:
- Record:
./gradlew :module_name:roborazzi:recordRoborazziDebug
. For instance:./gradlew :dialogs::roborazzi:recordRoborazziDebug
./gradlew :recyclerviewscreen:roborazzi:recordRoborazziDebug
./gradlew :lazycolumnscreen:roborazzi:recordRoborazziDebug
./gradlew :lazycolumnscreen-previews:roborazzi:recordRoborazziDebug
- Verify:
./gradlew :module_name:roborazzi:verifyRoborazziDebug
. For instance:./gradlew :dialogs:roborazzi:verifyRoborazziDebug
./gradlew :recyclerviewscreen:roborazzi:verifyRoborazziDebug
./gradlew :lazycolumnscreen:roborazzi:verifyRoborazziDebug
./gradlew :lazycolumnscreen-previews:roborazzi:verifyRoborazziDebug
In order to see the screenshots in Android Studio, change the view from "Android" to "Project".
Note 1
Thanks to Roborazzi plugin, it is also possible to record/verify these tests directly from Android Studio. For recording, you need to addroborazzi.test.record=true
in yourgradle.properties
file. For verifying, you need to addroborazzi.test.verify=true
in yourgradle.properties
file. Remember to record before verifying, to have a reference to compare with.
Note 2
You can record/verify the tests in parallel with the gradle property -Pparallel e.g../gradlew :module_name:roborazzi:recordRoborazziDebug -Pparallel
Please note that running tests in parallel is only worthwhile when dealing with a large number of tests.
Start the emulator. Then run the following gradle tasks depending on the module:
- Record:
./gradlew :module_name:dropshots:connectedAndroidTest -Pdropshots.record
. For instance:./gradlew :dialogs:dropshots:connectedAndroidTest -Pdropshots.record
./gradlew :recyclerviewscreen:dropshots:connectedAndroidTest -Pdropshots.record
./gradlew :lazycolumnscreen:dropshots:connectedAndroidTest -Pdropshots.record
- Verify:
./gradlew :module_name:dropshots:connectedAndroidTest
. For instance:./gradlew :dialogs:dropshots:connectedAndroidTest
./gradlew :recyclerviewscreen:dropshots:connectedAndroidTest
./gradlew :lazycolumnscreen:dropshots:connectedAndroidTest
Note
Thanks to Dropshots plugin, it is also possible to record/verify these tests directly from Android Studio. By default, it will execute the verify task. For recording, you need to adddropshots.record
in yourgradle.properties
file. Remember to record before verifying, to have a reference to compare with.
Start the emulator. Then run the following gradle tasks depending on the module:
- Record:
./gradlew :module_name:shot:executeScreenshotTests -Precord
. For instance:./gradlew :dialogs:shot:executeScreenshotTests -Precord
./gradlew :recyclerviewscreen:shot:executeScreenshotTests -Precord
./gradlew :lazycolumnscreen:shot:executeScreenshotTests -Precord
- Verify:
./gradlew :module_name:shot:executeScreenshotTests
. For instance:./gradlew :dialogs:shot:executeScreenshotTests
./gradlew :recyclerviewscreen:shot:executeScreenshotTests
./gradlew :lazycolumnscreen:shot:executeScreenshotTests
Note
The library says the record reports can be reviewed atRoadToEffectiveSnapshotTesting/dialogs/shot/build/reports/shot/debug/index.html
However, it is wrong. The record reports can be reviewed atRoadToEffectiveSnapshotTesting/dialogs/shot/build/reports/shot/debug/record/index.html
The path for the verification reports is right though.
Currently this is the only library that supports Gradle Managed Devices. You can do it by directly running the following command:
- **Record
**:
./gradlew :module_name:android-testify:pixel3api30DebugAndroidTest -PuseTestStorage -PrecordModeGmd
. For instance:./gradlew :dialogs:android-testify:pixel3api30DebugAndroidTest -PuseTestStorage -PrecordModeGmd
./gradlew :recyclerviewscreen:android-testify:pixel3api30DebugAndroidTest -PuseTestStorage -PrecordModeGmd
./gradlew :lazycolumnscreen:android-testify:pixel3api30DebugAndroidTest -PuseTestStorage -PrecordModeGmd
- Verify:
./gradlew :module_name:android-testify:pixel3api30DebugAndroidTest
. For instance:./gradlew :dialogs:android-testify:pixel3api30DebugAndroidTest -PuseTestStorage
./gradlew :recyclerviewscreen:android-testify:pixel3api30DebugAndroidTest -PuseTestStorage
./gradlew :lazycolumnscreen:android-testify:pixel3api30DebugAndroidTest -PuseTestStorage
Note
Before verifying, you need to copy the generated screenshots under the corresponding module's build/outputs/managed_device_android_test_additional_output/...) to the correct location, as specified here: https://ndtp.github.io/android-testify/docs/recipes/gmd For that you can run the following gradle task:./gradlew :module_name:android-testify:copyScreenshots -Pdevices=pixel3api30
. For instance:
./gradlew :dialogs:android-testify:copyScreenshots -Pdevices=pixel3api30
./gradlew :recyclerviewscreen:android-testify:copyScreenshots -Pdevices=pixel3api30
./gradlew :lazycolumnscreen:android-testify:copyScreenshots -Pdevices=pixel3api30
If you do not want to use Gradle Managed Devices, do as below: First, start the emulator. Then run the following gradle tasks depending on the module:
- Record:
./gradlew :module_name:android-testify:screenshotRecord
. For instance:./gradlew :dialogs:android-testify:screenshotRecord
./gradlew :recyclerviewscreen:android-testify:screenshotRecord
./gradlew :lazycolumnscreen:android-testify:screenshotRecord
- Verify:
./gradlew :module_name:android-testify:screenshotTest
. For instance:./gradlew :dialogs:android-testify:screenshotTest
./gradlew :recyclerviewscreen:android-testify:screenshotTest
./gradlew :lazycolumnscreen:android-testify:screenshotTest
Run the very same screenshot tests with the screenshot testing library of your choice, among
Paparazzi, Roborazzi, Shot, Dropshots or Android-Testify.
The most common scenario is to use 1 on-device (e.g. Shot, Dropshots, Android-Testify) and 1 JVM (
e.g. Paparazzi, Roborazzi) screenshot library.
For that, check the corresponding submodules
e.g. :android-testify+paparazzi
, :shot+roborazzi
, :dropshots+roborazzi
You would execute such tests as you would do for the corresponding library
e.g. ./gradlew :lazycolumnscreen:dropshots+paparazzi:recordPaparazziDebug
would record with
Paparazzi.
For examples containing 2+ on-device and/or 2+ JVM screenshot libraries, check the
corresponding :crosslibrary
modules.
Since they configure 2 on-device & 2 JVM screenshot libraries, you need to pass the library name via
command line for its correct execution. Here some examples with :lazycolumnscreen
but same applies
to :recyclerviewscreen
and :dialogs
- Record:
1.
Paparazzi:
./gradlew :lazycolumnscreen:crosslibrary:recordPaparazziDebug -PscreenshotLibrary=paparazzi
2. Roborazzi:./gradlew :lazycolumnscreen:crosslibrary:recordRoborazziDebug -PscreenshotLibrary=roborazzi
3. Shot:./gradlew :lazycolumnscreen:crosslibrary:executeScreenshotTests -Precord -PscreenshotLibrary=shot
4. Dropshots:./gradlew :lazycolumnscreen:crosslibrary:connectedAndroidTest -Pdropshots.record -PscreenshotLibrary=dropshots
5. Testify:./gradlew :lazycolumnscreen:crosslibrary:screenshotRecord -PscreenshotLibrary=android-testify
- Verify:
1.
Paparazzi:
./gradlew :lazycolumnscreen:crosslibrary:verifyPaparazziDebug -PscreenshotLibrary=paparazzi
2. Roborazzi:./gradlew :lazycolumnscreen:crosslibrary:verifyRoborazziDebug -PscreenshotLibrary=roborazzi
3. Shot:./gradlew :lazycolumnscreen:crosslibrary:executeScreenshotTests -PscreenshotLibrary=shot
4. Dropshots:./gradlew :lazycolumnscreen:crosslibrary:connectedAndroidTest -PscreenshotLibrary=dropshots
5. Testify:./gradlew :lazycolumnscreen:crosslibrary:screenshotTest -PscreenshotLibrary=android-testify
Note
You can also record and verify via Gradle Managed Devices with Android-Testify as specified in the previous section: 1. Record:./gradlew :lazycolumnscreen:crosslibrary:pixel3api30DebugAndroidTest -PuseTestStorage -PrecordModeGmd
2. Verify:./gradlew :lazycolumnscreen:crosslibrary:pixel3api30DebugAndroidTest -PuseTestStorage
Before verifying, you need to copy the generated screenshots under the corresponding module's build/outputs/managed_device_android_test_additional_output/...) to the correct location, as specified here: https://ndtp.github.io/android-testify/docs/recipes/gmd For that you can run the following gradle task:
./gradlew :lazycolumnscreen:crosslibrary:copyScreenshots -Pdevices=pixel3api30
:
To enable cross-library screenshot testing, it uses Android UI Testing Utils 2.1.0
Some tests in this repo are written as parameterized. In doing so, we can test a given view with all possible different configurations, namely:
- UI mode (Light and Dark)
- Font size
- Locale
- Orientation
- Custom themes
- Display size
- View dimensions (width and/or height)
- Specific view states
- Others...
With Parameterized snapshot test we can write the test once and run it for all the desired configurations! You can read more about how we can profit from it here:
This can be achieved by using
either org.junit.runners.Parameterized
, com.google.testing.junit.testparameterinjector.TestParameterInjector
or in case of Roborazzi via org.robolectric.ParameterizedRobolectricTestRunner
, as you'll find in
most examples in this repo.
Dropshots & Shot do not offer the possibility to set such configurations; Android-Testify only partially; Paparazzi and Roborazzi (via Robolectric) do though. Nevertheless, we can set the desired configurations for those libraries with Android UI Testing Utils, as seen in the examples.
Remark The Parameterized runner injects the parameter passed in the Test class constructor to every single test. If that is not wished, consider using the TestParameterInjector. On the other hand, TestParameterInjector only works with instrumented test on API 24+. Keep that in mind.
Running snapshot tests for all configurations on every PR can be very time-consuming and lead to incrementally slower builds. One approach to solve that issue is to run only a part of those tests on every PR (e.g. the most common config, our "smoke/happy path" tests) and all snapshot tests - or "all non-smoke tests" - once a day (e.g. during the night or whenever it disturbs your team the least). In doing so, we get informed of the most important visual regression bugs on every PR (i.e. blocking bugs), and still get notified of the non-blocking bugs once a day.
We can accomplish this by filtering our tests accordingly.
This applies for tests running on emulators/physical devices i.e. those using Dropshots, Shot or Android-Testify
In order to filter tests, we need to provide the corresponding test instrumentation arguments. A straightforward means to do that is to use custom annotations. For instance:
-Pandroid.testInstrumentationRunnerArguments.annotation=com.your.package.YourAnnotation
-Pandroid.testInstrumentationRunnerArguments.notAnnotation=com.your.package.YourAnnotation
That works for Shot, Dropshots and Android-Testify with Gradle Managed Devices.
For Android-Testify without Gradle Managed Devices, you need to configure it, otherwise it
uses @ScreenshotInstrumentation
:
def filterAnnotation = project.hasProperty("filterAnnotation") ? project.filterAnnotation : null
testify {
screenshotAnnotation = filterAnnotation
}
and then run the record/verify command with
-PfilterAnnotation=com.your.package.YourAnnotation
Warning
These arguments are supported byorg.junit.runners.Parameterized
andcom.google.testing.junit.testparameterinjector.TestParameterInjector
, but not by all runners, e.g.JUnitParams
fails if used. I strongly recommend to usecom.google.testing.junit.testparameterinjector.TestParameterInjector
for filtered parameterized tests, because you can control which parameters are passed to each test method. That is not the case withorg.junit.runners.Parameterized
, because the parameters are injected into every single test method. Thus, you need to create different Test classes to inject different parameters.
That's why you'll find some tests in this repo with the following annotations, which are found in
the module testannotations
:
@UnhappyPath
@HappyPath
@ActivityTest
@FragmentTest
@ViewHolderTest
@ComposableTest
...
In order to run filtered tests, execute the following gradle tasks, for the given annotation, for
example,@UnhappyPath
with shot:
- **Record
**:
./gradlew :module_name:shot:executeScreenshotTests -Pandroid.testInstrumentationRunnerArguments.annotation=com.example.road.to.effective.snapshot.testing.testannotations.UnhappyPath -Precord
- **Verify
**:
./gradlew :module_name:shot:executeScreenshotTests -Pandroid.testInstrumentationRunnerArguments.annotation=com.example.road.to.effective.snapshot.testing.testannotations.UnhappyPath
The same goes for @HappyPath
The previous approach only works for instrumented tests. For non-instrumented tests, like those running with Paparazzi or Roborazzi, the simplest approach is to use gradle test filters. We can pass them as parameters when executing the corresponding paparazzi test tasks. For this to work, it is important to define a clear test naming convention, for example:
- UnhappyPath tests -> inside
class myTestClassNameUnhappyPathTest
- HappyPath tests -> inside
class myTestClassNameHappyPathTest
This enables to filter the test separately by executing:
- Only Happy path tests:
- Paparazzi:
./gradlew :module_name:paparazzi:recordPaparazziDebug --tests '*UnhappyPath*'
- Roborazzi:
./gradlew :module_name:roborazzi:recordRoborazziDebug --tests '*UnhappyPath*'
- Paparazzi:
- Only Unhappy path tests:
- Paparazzi:
./gradlew :module_name:paparazzi:recordPaparazziDebug --tests '*HappyPath*'
- Roborazzi:
./gradlew :module_name:roborazzi:recordRoborazziDebug --tests '*HappyPath*'
- Paparazzi:
Note
This approach does not work for instrumented tests though.
- Comparison between libraries regarding e.g. speed, reliability, configurability, etc.
- More Snapshot testing samples (e.g. ScrollViews, Material you + dynamic colors...)
- Screenshot tests with other libraries: Facebook, ndtp/Testify, without library...
- Running snapshot tests on multiple devices/JVM in parallel
- Tips to remove flakiness
- Tips to increase test execution speed and more...
Special thanks to Alex Zhukovich for his CoffeeDrinksWithJetpackCompose projects, from which I've borrowed the Jetpack Compose examples!
Icons made by Freepik
from www.flaticon.com
Icons made by surang
from www.flaticon.com