有没有办法使用adb命令执行拖放操作?
对于appium,我们是这样做的:‘’action.longPress(ele1).moveTo(ele2).release().perform();‘
我想使用adb命令为android做这件事。
发布于 2020-08-19 17:36:04
使用以下命令:
adb shell input draganddrop x1 y1 x2 y2如果连接了多个设备,请使用:
adb -s serialno shell input draganddrop x1 y1 x2 y2https://stackoverflow.com/questions/61671636
复制相似问题