Automate UI Tests in a Kotlin Compose Project - equivalent version of Expresso Recorder

602 Views Asked by At

is there a framework I can use to automate UI regression testing in a Kotlin Compose project? Clicking on Android Studio Run -> Record Expresso Test gives a warning that Espresso Testing Framework does not support Compose projects.

1

There are 1 best solutions below

0
On

Espresso testing framework cannot be used with Jetpack Compose so test recording is not yet available but Compose tests are fairly easy to write.

You can check the official documentation if this helps: https://developer.android.com/jetpack/compose/testing

dupe: Test recorder for jetpack compose