gpt4 book ai didi

java - 滑动手势非常慢,...如何加快 Android 中的滑动手势?

转载 作者:行者123 更新时间:2023-12-02 01:05:32 25 4
gpt4 key购买 nike

我的 Appium 测试有水平滑动手势,但执行时滑动手势非常慢。有什么可行的方法吗?我们将非常感谢您的建议。

我已经添加了一些 waitAction() 但它没有帮助

  public void horizontalSwipeRightToLeft(AndroidDriver driver){
Dimension deviceDim = driver.manage().window().getSize();
int height = deviceDim.getHeight();
int width = deviceDim.getWidth();
int y = (int) (height*0.20);
int startX = (int) (width*0.80);
int endX = (int) (width*0.20);
TouchAction swipe = new TouchAction(driver);
swipe.longPress(point(startX,y))
.moveTo(point(endX,y)).release()
.perform();
}

我也尝试了这个代码,但它的输出相同正如你所看到的,我添加了一些持续时间..

TouchAction swipe = new TouchAction(driver);
swipe.longPress(LongPressOptions.longPressOptions()
.withPosition(point(startX,y))
.withDuration(Duration.ofMillis(250)))
.moveTo(point(endX,y)).release()
.waitAction(WaitOptions.waitOptions(Duration.ofMillis(100)))
.perform();

最佳答案

还有执行滑动/滚动的替代方法:

  1. 使用mobile:shell命令如下:

    Map<String, Object> args = new HashMap<>();
    args.put("command", "input");
    args.put("args", Lists.newArrayList("swipe", "startX","startY","endX","endY"));
    driver.executeScript("mobile: shell", args);
  2. 使用Swipe命令可通过SeeTest Appium Extension获得像:

    seetest.swipe("Right", 10, 500);

关于java - 滑动手势非常慢,...如何加快 Android 中的滑动手势?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57735248/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com