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