Tanmoy MollikIt looks like there are some failing tests that might need fixing (let's decide what do we do with hiding the spinner first).
Done
if (!sHideSigninSpinnerForTests) {Tanmoy MollikI've commented this out and run `testSigninWithDefaultAccount` 100 times on `crow --device generic_phone --api_level 35 --arch x86_64` - it passed all 100 times without any issues. Can you please share more details on how you've reproduced the issue?
Hi . I removed that change. It looks like it is no longer needed. PTAL
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
The first case is solved by adding scrollTo() call in test failure[Nit] It looks like we only have a single case, please update.
onScrollToView(withText(R.string.continue_button)).perform(scrollTo(), click());Looks like you're scrolling twice?
onView(withText(continueAsText)).perform(scrollTo(), click());Nit: should this use `onScrollToView`? It looks like some other test are also using `scrollTo` instead of `onScrollToView`.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
The first case is solved by adding scrollTo() call in test failure[Nit] It looks like we only have a single case, please update.
Done
onScrollToView(withText(R.string.continue_button)).perform(scrollTo(), click());Looks like you're scrolling twice?
Done
onView(withText(continueAsText)).perform(scrollTo(), click());Nit: should this use `onScrollToView`? It looks like some other test are also using `scrollTo` instead of `onScrollToView`.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |