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.
Asked
Active
Viewed 435 times
9

SabetiG
- 379
- 2
- 8
-
Do anybody know google team plans about it? – brucemax May 22 '22 at 01:38
1 Answers
1
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

user21114570
- 11
- 2