我在Appium的经验较少。 我想在我的模拟器屏幕中执行下面提到的操作
我尝试过Touch Action Command,但他们没有滚动 屏幕也没有失败。我的脚本到此为止, 没有采取任何行动。
我试过的命令:
action.press(427, 878).waitAction().moveTo(427, 554).release().perform();
和
action.press(427, 878).moveTo(427, 554).release().perform();
和
Dimension size = wd.manage().window().getSize();
int startx = size.getWidth() / 2;
int starty = (int) (size.getHeight() * 0.8);
int endy = (int) (size.getHeight() * 0.2);
TouchAction action = new TouchAction(driver);
action.press(startx,starty).waitAction().moveTo(startx,endy).release().perform();
我的系统配置是:
请帮帮我。另外让我知道是否有任何其他Jar,我可以使用的命令,它将适用于android 7和6