原来那个需要调用 h5 自己的键盘
public void swipeToUp(long during) {
int width = getWidth();
int height = getHeight();
// driver.swipe(width / 2, height * 3 / 4, width / 2, height / 4, during);
TouchAction touchAction = new TouchAction(driver);
touchAction.press(PointOption.point(width / 2, height * 3 / 4))
.waitAction(WaitOptions.waitOptions(Duration.ofMillis(during)))
.moveTo(PointOption.point(width / 2, height / 4)).release().perform();
logger.info("向上滑动");
}
向上滑动封装
我是 java 写的代码
重启手机
替换里面的 chromedriver 工具
app 打开 debug 模式没?
我也是这样
怎么 returns?
returns 怎么解决?
我也发现这个问题了, 你是怎么解决的