拖放浓缩咖啡

F1s*_*her 9 android android-espresso android-instrumentation

是否可以通过Espresso执行拖放操作?我需要向下移动一个视图(直线)以接受我的自动化测试中的某些条件.

bla*_*ade 11

您可以使用GeneralSwipeAction执行拖放操作.

public static ViewAction swipeUp() {  
return new GeneralSwipeAction(Swipe.FAST, GeneralLocation.BOTTOM_CENTER,  
    GeneralLocation.TOP_CENTER, Press.FINGER);  
}
Run Code Online (Sandbox Code Playgroud)

您也可以自定义位置以满足您的要求.