我正在使用UIAutomator在地图上点击标记执行自动化测试:
UiDevice device = UiDevice.getInstance(getInstrumentation());
UiObject marker = device.findObject(new UiSelector().descriptionContains("test marker title"));
marker.click();
但是,现在我想点击地图上的其他地方。我尝试使用:
onView(withContentDescription("Google Map")).perform(click());
但是在很多情况下会点击地图上的其他标记。有没有办法点击非标记点?