Espresso Test 1: 前言
Posted yxhuangCH
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Espresso Test 1: 前言相关的知识,希望对你有一定的参考价值。
Espresso
文章目录
核心的部分
-
ViewMatchers
是一个实现了Matcher<? super View>
接口的集合对象。它可以作为参数出入到onView()
函数里面. -
ViewActions
是一个可以作为参数出入到ViewInteraction.perform()
的参数,它也是ViewAction
对象的集合对象. 例如click()
-
ViewAssertions
是一个可以作为参数出入到ViewInteraction.check()
的参数。用来判断 View 的状态。
onView(ViewMatcher) ①
.perform(ViewAction) ②
.check(ViewAssertion); ③
① - 找到 View
② - 对这个 View 执行动作
③ - 进行有效的断言
// withId(R.id.my_view) is a ViewMatcher
// click() is a ViewAction
// matches(isDisplayed()) is a ViewAssertion
onView(withId(R.id.my_view))
.perform(click())
.check(matches(isDisplayed()))
使用前注意事项
使用前应该关掉实体机或模拟机的动画
参考
https://www.vogella.com/tutorials/androidTestingEspresso/article.html
https://developer.android.com/training/testing/espresso
以上是关于Espresso Test 1: 前言的主要内容,如果未能解决你的问题,请参考以下文章
Espresso Test 2: Espresso_simple
Espresso Test 2: Espresso_simple
Android的报错提示:Failed to resolve: com.android.support.test.espresso:espresso-core:3.0.2