如何使用坐标在移动设备中滑动?我正在使用 appium,java

How to swipe in Mobile using coordinates ? i am using appium ,java

下面的代码,我用了但是没用

try{
     driverNew.findElementByAndroidUIAutomator("new UiScrollable(new
     UiSelector().scrollable(true)"+".scrollToEnd(4);");
     } catch (Exception e) {
     System.out.println(e.getMessage());
     }

终于得到了工作代码

我发现使用 Appium 可以协调刷卡

TouchAction 滑动 = new TouchAction(driverNew).press(PointOption.point(540, 1824)) .waitAction(waitOptions(ofMillis(800))).moveTo(PointOption.point(540, 672)).release().perform();