我正在尝试使UIAutomator单击Google Maps上的MarkerOptions。 This solution does not work ..

build.gradle(应用程序级别)

dependencies {
    androidTestCompile 'com.android.support.test:runner:0.3'
    androidTestCompile 'com.android.support.test:rules:0.3'
    androidTestCompile 'com.android.support.test.uiautomator:uiautomator-v18:2.1.1'
}


测试类

@RunWith(AndroidJUnit4.class)
public class ApplicationTest {

        UiDevice device = UiDevice.getInstance(InstrumentationRegistry.getInstrumentation());
        UiObject marker = device.findObject(new UiSelector().descriptionContains("title_of_marker. snippet_of_marker."));
        try {
            marker.click();
        } catch (UiObjectNotFoundException e) {
            e.printStackTrace();
        }
}


MapsFragment.java

private GoogleMap mMapView;

private void loadMapLocations() {

            mMapView.addMarker(new MarkerOptions()
                    .position(new LatLng(52.0988198,5.074657))
                    .title("title_of_marker")
                    .snippet("snippet_of_marker"));
}


android - 使用UIAutomator单击MarkerOptions-LMLPHP

输出:

W/System.err: android.support.test.uiautomator.UiObjectNotFoundException: UiSelector[CONTAINS_DESCRIPTION=title_of_marker. snippet_of_marker.]
W/System.err:     at android.support.test.uiautomator.UiObject.click(UiObject.java:412)


我已经尝试了所有方法,但现在不知道如何进行。

最佳答案

我创建了一个示例地图,并添加了一个与您相似的标记。
开始CulebraTester。开始测试记录。点击标记。

android - 使用UIAutomator单击MarkerOptions-LMLPHP

然后我刚刚添加了wait(很快就会自动生成)以获取此测试。

@Test
public void culebraGeneratedTest() throws Exception {
    final BySelector bySelector = By.clazz(Pattern.compile(".*")).desc("title_of_marker. snippet_of_marker.").pkg("com.example.diego.mymapapplication");
    mDevice.wait(Until.hasObject(bySelector), DEFAULT_TIMEOUT);
    mDevice.findObject(bySelector).clickAndWait(Until.newWindow(), DEFAULT_TIMEOUT);
}


将测试类添加到项目中。
运行测试。
而且有效!

这似乎是测试CulebraTester代码生成的好机会。

关于android - 使用UIAutomator单击MarkerOptions,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38340088/

10-09 01:38