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
My espresso tests were working fine before I updated to AS 3.6 with
viewBinding { enabled = true }
Now, when I do something like this it is not working:
public static void tapCard(String PageName) throws Throwable { Lets.performAndTakeSS(On.LocationsListDetails.CARDS_RECYCLER_VIEW, RecyclerViewActions.scrollTo(hasDescendant(EspressoMatchers.withText(EspressoMatchers.endsWith(PageName))))); Lets.performAndTakeSS(On.LocationsListDetails.CARDS_RECYCLER_VIEW, RecyclerViewActions.actionOnItem(hasDescendant(EspressoMatchers.withText(EspressoMatchers.endsWith(PageName))), click())); }
Am I supposed to change anything to work with viewbinding? Seeing this issue especially with Fragments.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
My espresso tests were working fine before I updated to AS 3.6 with
Now, when I do something like this it is not working:
Am I supposed to change anything to work with viewbinding? Seeing this issue especially with Fragments.
The text was updated successfully, but these errors were encountered: