What’s the go to kotlin library for testing applic...
# android
s
What’s the go to kotlin library for testing application flow? I understand how to write basic unit tests in kotlin, and also how to mock api responses, for my app, but I need something that can assert “when this button is tapped this new activity/these UI elements is/are showing on the screen”, so I guess it translates to testing navigation.
l
I guess you're looking for UI Testing with Espresso or Selenium/Appium you can use kotlin for both. directly or with a wrapper
r
Espresso is the standard