如何使用简单的触摸事件测试视图,例如ACTION_DOWN
和ACTION_MOVE
?
答案 0 :(得分:6)
您可以轻松发送触摸事件。使用此视图操作:
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));
答案 1 :(得分:1)
没有像move(Gravity.LEFT, 40)
方法那样直接使用Espresso匹配器的方法。
出于某些目的,例如ACTION_DOWN
,您可以使用滑动方法,例如swipeDown()
检查Espresso.ViewActions参考:https://developer.android.com/reference/android/support/test/espresso/action/ViewActions.html
对于某些人,您需要修改现有方法,例如:Drag & Drop Espresso
还尝试将Espresso
与其他UI工具框架(例如Robotium
混合使用,这些框架已经有一些很好的匹配器和功能,Espresso没有touch()
方法或尝试其他Google& #39;名为uiatomator
的框架。
检查:http://qathread.blogspot.com/2015/05/espresso-uiautomator-perfect-tandem.html
希望它会有所帮助