如何滚动到“手表部分” Appium

时间:2018-11-07 09:05:54

标签: java appium

我的滚动条一直滚动到底部。

但是我需要向下滚动至我无法执行的“手表部分”。

    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))");

点击男装后,我需要滚动到手表部分,因为我被手表所吸引。

以下是手表部分的图片: enter image description here

只需要滚动至观看部分即可。

UI automator

1 个答案:

答案 0 :(得分:0)

driver.findElement(MobileBy.AndroidUIAutomator(
                "new UiScrollable(new UiSelector().resourceId(\"your scrollable list id\")).scrollIntoView("
                + "new UiSelector().textContains(\"Watches\").instance(1))"));