我的依赖关系:
androidTestCompile 'com.android.support.test:runner:0.3'
androidTestCompile 'com.android.support.test:rules:0.3'
androidTestCompile 'com.android.support:support-annotations:23.0.1'
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2'
androidTestCompile('com.android.support.test.espresso:espresso-contrib:2.2') {
exclude group: 'com.android.support', module: 'appcompat'
exclude group: 'com.android.support', module: 'support-v4'
exclude module: 'recyclerview-v7'
}
androidTestCompile 'junit:junit:4.12'
我无法找到一种方法来模拟AlertDialog窗口外的点击,以便在关闭时检查某些内容......
我该怎么做?
答案 0 :(得分:2)
Espresso无法做到这一点。
您需要在Espresso测试中使用 uiautomator ,将其添加到您的项目中:
androidTestCompile 'com.android.support.test.uiautomator:uiautomator-v18:2.1.1'
出现对话框后,您可以在任意坐标处点击屏幕:
UiDevice device = UiDevice.getInstance(getInstrumentation());
device.click(x,y);
这将关闭你的对话
答案 1 :(得分:1)
在许多情况下,您可以通过创建自定义ClickAction来执行此操作:
public static ViewAction clickXY(final int x, final int y){
return new GeneralClickAction(
Tap.SINGLE,
new CoordinatesProvider() {
@Override
public float[] calculateCoordinates(View view) {
final int[] screenPos = new int[2];
view.getLocationOnScreen(screenPos);
final float screenX = screenPos[0] + x;
final float screenY = screenPos[1] + y;
float[] coordinates = {screenX, screenY};
return coordinates;
}
},
Press.FINGER);
}
然后你可以在对话框中找到一个已知的视图(比如说' OK'按钮)并按如下方式调用它:
onView(withText("OK")).perform(clickXY(-200, 200));
显然,您使用的x / y值取决于您的具体情况。