无法使用UiScrollable和TouchAction在Appium中水平滚动

时间:2019-12-12 18:15:53

标签: appium appium-android

我试图滚动至“进入我的旅行”主页上的“礼品卡”选项,然后单击它。到目前为止,我已经尝试了以下两种方法,但均未成功。我还附有App主页的屏幕截图,以便于清楚理解。

方法1:使用AndroidUIAutomator滚动到特定元素。

driver.findElement(MobileBy.AndroidUIAutomator("new UiScrollable(new UiSelector()"
                + ".resourceId(\"com.makemytrip:id/rvHomePageIcon\"))"
                + ".scrollIntoView(new UiSelector().textMatches(\"Gift Cards\")"
                + ".instance(0));"));

结果:这不会滚动,但是会在应用程序上单击“寄宿家庭”选项。

方法2:

WebElement eleOne = driver.findElement(By.xpath("//*[@text='Flights']"));
WebElement eleTwo = driver.findElement(By.xpath("//*[@text='Gift Cards']"));
TouchAction t = new TouchAction(driver);
t.longPress(longPressOptions().withElement(element(eleOne))
                .withDuration(ofSeconds(8))).moveTo(element(eleTwo))
                    .release().perform();

结果:由于eleTwo当前不在框架中,因此不会引发“找不到这样的元素”异常。我试图调整此方法,并输入eleTwo作为一个在屏幕上可见的元素,以查看滚动是否起作用以及它是否起作用。 但是我不知道如何处理屏幕上不可见的元素。

我想滚动顶部的选项列表,然后单击GiftCard,它是顶部小部件菜单上的最后一个选项。

我在Java-Client 7.3.0中使用AppiumDriver。

IntialPosition ScrollingTillGiftCard

1 个答案:

答案 0 :(得分:0)

您可以使用uiAutomator2(将scrollable设置为true)进行尝试:

public void scrollByID(String Id, int index) {

        try {

             driver.findElement(MobileBy.AndroidUIAutomator("new UiScrollable(new UiSelector().scrollable(true).instance(0)).scrollIntoView(new UiSelector().resourceId(\""+Id+"\").instance("+index+"));")); 

        } catch (Exception e) {
           e.printStackTrace();
        }
    }

您可以使用“触摸操作”根据屏幕大小滚动水平和垂直方向。这是示例代码。

public void scrollHorizontally() {

      int  y = driver.manage().window().getSize().height / 2;
      int start_x = (int) (driver.manage().window().getSize().width * 0.2);
      int end_x = (int) (driver.manage().window().getSize().width * 0.8);
        TouchAction dragNDrop = new TouchAction(driver)
                        .press(PointOption.point(start_x, y)).waitAction(WaitOptions.waitOptions(Duration.ofMillis(500)))
                        .moveTo(PointOption.point(end_x, y))
                        .release();
        dragNDrop.perform();
    }

我写了一个详细的答案来滚动使用不同的方法。您可以在这里查看:

How to reach the end of a scroll bar in appium?