java Espresso UI测试命令

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java Espresso UI测试命令相关的知识,希望对你有一定的参考价值。


    ViewActions.click()
    ViewActions.typeText()
    ViewActions.pressKey()
    ViewActions.clearText()
    ViewActions.swipeRight()

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
        
      onView(withId(R.id.editTextUserInput))
            .perform(typeText(STRING_TO_BE_TYPED), closeSoftKeyboard());
  

以上是关于java Espresso UI测试命令的主要内容,如果未能解决你的问题,请参考以下文章

在ANDROID STUDIO环境下使用Espresso 测试框架进行UI测试

在Android Studio环境下使用ESPRESSO 测试框架进行UI测试

Android Espresso单元测试

从 Maps Intent espresso 回到活动 - UI 测试

回到地图意图espresso - UI测试的活动

Android Studio 2.2 Espresso Test Recorder-----解放双手,通过录制测试过程实现测试