如何在Android Espresso测试中捏合和缩放(手势)图像视图?

时间:2018-06-18 13:36:13

标签: android android-imageview android-espresso

我正致力于图像编辑应用程序的自动化,并使用Android Espresso作为框架。 请指导我如何在Android Espresso测试中捏合和缩放(手势)图像视图

1 个答案:

答案 0 :(得分:1)

您在Espresso中没有方法,但您可以使用UiAutomator对象来执行这些操作。

UiDevice myDevice = UiDevice.getInstance(InstrumentationRegistry.getInstrumentation());
myDevice.findObject(new UiSelector().text("element text to be found")).pinchIn(); //to zoom in
myDevice.findObject(new UiSelector().text("element text to be found")).pinchOut(); //to zoom out