Element wrapper library for Espresso testing framework
Add repository (jitpack):
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
Dependency:
dependencies {
androidTestImpl 'com.github.QAutomatron:kopi:version'
}
val fieldById = Element(withId(R.id.field))
// Tap element
fieldById.tap()
// Assert field
fieldById.sameAs("my_text")
// Wait for visibility
fieldById.waitForVisibility()