准备你的项目并编写第一个 UIAutomator 测试

将所需的库添加到 Android 模块的 build.gradle 的 dependencies 部分:

android {
...
  defaultConfig {
    ...
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  }
}

dependencies {
  ...
  androidTestCompile 'com.android.support.test:runner:0.5'
  androidTestCompile 'com.android.support.test:rules:0.5'
  androidTestCompile 'com.android.support.test.uiautomator:uiautomator-v18:2.1.2'
  androidTestCompile 'com.android.support:support-annotations:23.4.0'
}

⚠请注意,当然版本的平均时间可能不同。

与此更改同步后。

然后在 androidTest 文件夹中添加一个新的 Java 类:

public class InterAppTest extends InstrumentationTestCase {

  private UiDevice device;

  @Override
  public void setUp() throws Exception {
     device = UiDevice.getInstance(getInstrumentation());
  }

  public void testPressHome() throws Exception {
    device.pressHome();
  }
}

通过右键单击类选项卡并在运行InterAppTest 上执行此测试。