Home
last modified time | relevance | path

Searched refs:scrollView (Results 1 – 2 of 2) sorted by relevance

/test/uiautomator/integration-tests/testapp/src/androidTest/java/androidx/test/uiautomator/testapp/
DUiObject2Test.java509 UiObject2 scrollView = mDevice.findObject(By.res(TEST_APP, "scroll_view")); in testIsScrollable() local
510 assertTrue(scrollView.isScrollable()); in testIsScrollable()
666 UiObject2 scrollView = mDevice.findObject(By.res(TEST_APP, "scroll_view")); in testScroll() local
668 Rect bounds = scrollView.getVisibleBounds(); in testScroll()
671 scrollView.scroll(Direction.DOWN, percent); in testScroll()
682 UiObject2 scrollView = mDevice.findObject(By.res(TEST_APP, "scroll_view")); in testScroll_untilEnd() local
683 while (scrollView.scroll(Direction.DOWN, 1.0f)) { in testScroll_untilEnd()
697 UiObject2 scrollView = mDevice.findObject(By.res(TEST_APP, "scroll_view")); in testScrollUntil_conditionSatisfied() local
698 assertNotNull(scrollView.scrollUntil(Direction.DOWN, in testScrollUntil_conditionSatisfied()
709 UiObject2 scrollView = mDevice.findObject(By.res(TEST_APP, "scroll_view")); in testScrollUntil_conditionNotSatisfied() local
[all …]
DUiObjectTest.java486 UiObject scrollView = mDevice.findObject(new UiSelector().resourceId(TEST_APP + ":id" in testIsScrollable() local
491 assertTrue(scrollView.isScrollable()); in testIsScrollable()