AndroidAPS/app/src/androidTest/java/info/nightscout/androidaps/EspressoHelper.kt
2019-12-11 23:15:36 +01:00

16 lines
449 B
Kotlin

package info.nightscout.androidaps
import androidx.test.espresso.NoMatchingViewException
import androidx.test.espresso.ViewInteraction
import androidx.test.espresso.assertion.ViewAssertions.matches
import androidx.test.espresso.matcher.ViewMatchers
fun ViewInteraction.isDisplayed(): Boolean {
try {
check(matches(ViewMatchers.isDisplayed()))
return true
} catch (e: NoMatchingViewException) {
return false
}
}