我的滚动条一直滚动到底部。
但是我需要向下滚动至我无法执行的“手表部分”。
loginpage.getMensFashionList().click();//clicks on Mens Fashion
//Scroll to watches section.
driver.findElementByAndroidUIAutomator("new UiScrollable(new UiSelector().scrollable(true).instance(0)).scrollIntoView(new UiSelector().textMatches(\"Watches\").instance(0))");
点击男装后,我需要滚动到手表部分,因为我被手表所吸引。
只需要滚动至观看部分即可。
答案 0 :(得分:0)
driver.findElement(MobileBy.AndroidUIAutomator(
"new UiScrollable(new UiSelector().resourceId(\"your scrollable list id\")).scrollIntoView("
+ "new UiSelector().textContains(\"Watches\").instance(1))"));