Google开源Android平台自动化测试框架“Espresso”

郑文强 2013-10-23

2013GTAC谷歌介绍了Android平台自动化测试框架“Espresso”(Video,Slides),10月18号谷歌正式开放“Espresso”。在谷歌测试团队博客中如下介绍“Espresso”:

引用
The compelling thing about developing Espresso was making it easy and fun for developers to write reliable UI tests. Espresso has a small, predictable, and easy to learn API, which is still open for customization. But most importantly - Espresso removes the need to think about the complexity of multi-threaded testing. With Espresso, you can think procedurally and write concise, beautiful, and reliable Android UI tests quickly.

Google目前已经在超过30多个应用(Drive、Maps、G+)中使用Espresso。

public void testSayHello() {
  onView(withId(R.id.name_field))
    .perform(typeText("Steve"));
  onView(withId(R.id.greet_button))
    .perform(click());
  onView(withText("Hello Steve!"))
    .check(matches(isDisplayed()));
}

Espresso

https://code.google.com/p/android-test-kit/wiki/Espresso

EspressoStartGuide

https://code.google.com/p/android-test-kit/wiki/EspressoStartGuide

EspressoSamples

https://code.google.com/p/android-test-kit/wiki/EspressoSamples

EspressoforAndroid-aDemo

http://www.youtube.com/watch?v=qtKx1WxK7cw

相关推荐

HappinessCat / 0评论 2015-05-16

jszy / 0评论 2017-01-12