gpt4 book ai didi

java - 无法使用java客户端7.0通过appium滚动android native 应用程序

转载 作者:行者123 更新时间:2023-12-02 09:38:27 25 4
gpt4 key购买 nike

我无法使用 Appium 垂直滚动 Android 应用程序。我正在使用 java-client 7.0.0 API。Action.press 不起作用

(new TouchAction(driver))
.press({x: 600, y: 2408})
.moveTo({x: 348: y: 615})
.release()
.perform()

最佳答案

尝试使用以下示例:

/**
* This method scrolls based upon the passed parameters
* @author Bill Hileman
* @param int startx - the starting x position
* @param int starty - the starting y position
* @param int endx - the ending x position
* @param int endy - the ending y position
*/
@SuppressWarnings("rawtypes")
public void scroll(int startx, int starty, int endx, int endy) {

TouchAction touchAction = new TouchAction(driver);

touchAction.longPress(PointOption.point(startx, starty))
.moveTo(PointOption.point(endx, endy))
.release()
.perform();

}

关于java - 无法使用java客户端7.0通过appium滚动android native 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57308654/

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