We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can we have support for viewpager with tablayout. Use cases are-
Also, can we have something related to resource idling the use case for this
`fun waitTillViewIsVisible(matcher: Matcher): ViewAction = object : ViewAction {
override fun getConstraints(): Matcher<View> { return Matchers.any(View::class.java) } override fun getDescription(): String { return StringDescription().let { matcher.describeTo(it) "wait until: $it" } } override fun perform(uiController: UiController, view: View) { if (!matcher.matches(view)) { ViewPropertyChangeCallback(matcher, view).run { try { IdlingRegistry.getInstance().register(this) view.viewTreeObserver.addOnDrawListener(this) } finally { view.viewTreeObserver.removeOnDrawListener(this) IdlingRegistry.getInstance().unregister(this) } } } }}`
The text was updated successfully, but these errors were encountered:
Hi @GauravP123 .
On theory Espresso already waits until the view changes are done before doing any other interaction.
If you are able to replicate the case in a test we can check from there.
Sorry, something went wrong.
No branches or pull requests
Can we have support for viewpager with tablayout.
Use cases are-
Also, can we have something related to resource idling
the use case for this
`fun waitTillViewIsVisible(matcher: Matcher): ViewAction = object : ViewAction {
The text was updated successfully, but these errors were encountered: