如何使用简单的触摸事件(如ACTION_DOWN
和ACTION_MOVE
(测试视图?
您可以轻松发送触摸事件。使用此视图操作:
public static ViewAction touchDownAndUp(final float x, final float y) {
return new ViewAction() {
@Override
public Matcher<View> getConstraints() {
return isDisplayed();
}
@Override
public String getDescription() {
return "Send touch events.";
}
@Override
public void perform(UiController uiController, final View view) {
// Get view absolute position
int[] location = new int[2];
view.getLocationOnScreen(location);
// Offset coordinates by view position
float[] coordinates = new float[] { x + location[0], y + location[1] };
float[] precision = new float[] { 1f, 1f };
// Send down event, pause, and send up
MotionEvent down = MotionEvents.sendDown(uiController, coordinates, precision).down;
uiController.loopMainThreadForAtLeast(200);
MotionEvents.sendUp(uiController, down, coordinates);
}
};
}
并通过以下方式调用它:
onView(withId(R.id.my_view)).perform(touchDownAndUp(x, y));
像move(Gravity.LEFT, 40)
方法那样没有直接的浓缩咖啡匹配器。
对于某些目的(例如ACTION_DOWN
您可以使用滑动方法,例如swipeDown()
查看 Espresso.ViewActions 参考:https://developer.android.com/reference/android/support/test/espresso/action/ViewActions.html
对于某些人来说,您需要修改现有方法,如下所示:拖放浓缩咖啡
还可以尝试将Espresso
与其他UI检测框架混合使用,例如Robotium
,该框架已经具有一些出色的匹配器和功能,而Espresso没有touch()
方法,或者尝试另一个名为uiatomator
的Google框架。
检查:http://qathread.blogspot.com/2015/05/espresso-uiautomator-perfect-tandem.html
希望会有所帮助