Compare commits
1 Commits
514c6b85c3
...
b5817865e4
Author | SHA1 | Date | |
---|---|---|---|
b5817865e4 |
@ -21,7 +21,7 @@ import androidx.test.uiautomator.UiDevice
|
|||||||
import androidx.test.uiautomator.UiSelector
|
import androidx.test.uiautomator.UiSelector
|
||||||
import org.hamcrest.CoreMatchers.allOf
|
import org.hamcrest.CoreMatchers.allOf
|
||||||
import org.hamcrest.Matchers.hasToString
|
import org.hamcrest.Matchers.hasToString
|
||||||
import org.junit.BeforeClass
|
import org.junit.Before
|
||||||
import java.util.Locale
|
import java.util.Locale
|
||||||
|
|
||||||
fun performLogin(someUrl: String? = null) {
|
fun performLogin(someUrl: String? = null) {
|
||||||
@ -128,7 +128,6 @@ fun testAddSourceWithUrl(
|
|||||||
}
|
}
|
||||||
|
|
||||||
open class WithANRException {
|
open class WithANRException {
|
||||||
companion object {
|
|
||||||
// Running count of the number of Android Not Responding dialogues to prevent endless dismissal.
|
// Running count of the number of Android Not Responding dialogues to prevent endless dismissal.
|
||||||
private var anrCount = 0
|
private var anrCount = 0
|
||||||
|
|
||||||
@ -142,15 +141,7 @@ open class WithANRException {
|
|||||||
"Root:",
|
"Root:",
|
||||||
)
|
)
|
||||||
|
|
||||||
private fun handleAnrDialogue() {
|
@Before
|
||||||
val device = UiDevice.getInstance(getInstrumentation())
|
|
||||||
// If running the device in English Locale
|
|
||||||
val waitButton = device.findObject(UiSelector().textContains("wait"))
|
|
||||||
if (waitButton.exists()) waitButton.click()
|
|
||||||
}
|
|
||||||
|
|
||||||
@JvmStatic
|
|
||||||
@BeforeClass
|
|
||||||
fun setUpHandler() {
|
fun setUpHandler() {
|
||||||
Espresso.setFailureHandler { error, viewMatcher ->
|
Espresso.setFailureHandler { error, viewMatcher ->
|
||||||
|
|
||||||
@ -162,5 +153,11 @@ open class WithANRException {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun handleAnrDialogue() {
|
||||||
|
val device = UiDevice.getInstance(getInstrumentation())
|
||||||
|
// If running the device in English Locale
|
||||||
|
val waitButton = device.findObject(UiSelector().textContains("wait"))
|
||||||
|
if (waitButton.exists()) waitButton.click()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user