Skip to content

Latest commit

 

History

History
108 lines (80 loc) · 3.57 KB

Espresso使用入门.md

File metadata and controls

108 lines (80 loc) · 3.57 KB

Espresso

  • Espresso是什么

由Google提供的开源native测试框架。支持所有版本的Android API.

  • 如何测试

    • 通过使用Rule来获取Activity
    • 针对Activity中的元素进行操作,进而达到测试的目的 Espresso工作原理
  • 测试运行的基础组件

    • onView: 查找元素
    • .perform: 执行一个操作
    • .check: 验证结果
onView(withId(R.id.my_view))            // withId(R.id.my_view) is a ViewMatcher
        .perform(click())               // click() is a ViewAction
        .check(matches(isDisplayed())); // matches(isDisplayed()) is a ViewAssertion

准备工作

  • SDK Tool: 安装Android Support Repository SDKTool设置

实现Espresso代码

  • 源APP程序: 使用Android Studio的模板创建的一个LoginActivityAPP

  • 配制Gradle build

androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
  • 编写测试代码

    • 配制Rule
    @Rule
    public ActivityTestRule<LoginActivity> mActivityRule = new ActivityTestRule<>(
            LoginActivity.class);
    
    
    • 编写测试
      • 输入邮箱、密码
      • 点击登录
    @Test
    public void testAttemptLogin() {
        // Type text and then press the button.
        onView(withId(demo.test.espressodemo.R.id.email))
                .perform(typeText(STRING_TO_BE_TYPED_EMAIL), closeSoftKeyboard());
        onView(withId(demo.test.espressodemo.R.id.email))
                .check(matches(withText(STRING_TO_BE_TYPED_EMAIL)));
    
        onView(withId(demo.test.espressodemo.R.id.password))
                .perform(typeText(STRING_TO_BE_TYPED_EMAIL_PASSWORD), closeSoftKeyboard());
        onView(withId(demo.test.espressodemo.R.id.password))
                .check(matches(withText(STRING_TO_BE_TYPED_EMAIL_PASSWORD)));
    
        onView(withId(demo.test.espressodemo.R.id.email_sign_in_button))
                .perform(click());
    
    }
    
  • 设备设置: 关闭动画及缩放, 在开发者选项-绘画中,关闭下面的内容

    • 窗口动画缩放
    • 过滤动画缩放
    • 动画程序时长缩放
  • 执行测试

    测试过程

  • 在Android Studio中查看测试结果

2:10:32 PM Executing tasks: [:app:assembleDebug, :app:assembleDebugAndroidTest]
2:10:42 PM Gradle build finished in 8s 988ms
2:10:49 PM Tests Passed: 1 passed

测试结果

至此,使用Espresso进行简单的测试已经完成

总结

参考