Espresso 正在参加 2021 年度 OSC 中国开源项目评选,请投票支持!
Espresso 在 2021 年度 OSC 中国开源项目评选 中已获得 {{ projectVoteCount }} 票,请投票支持!
2021 年度 OSC 中国开源项目评选 正在火热进行中,快来投票支持你喜欢的开源项目!
2021 年度 OSC 中国开源项目评选 >>> 中场回顾
Espresso 获得 2021 年度 OSC 中国开源项目评选「最佳人气项目」 !
授权协议 Apache
开发语言 Java
操作系统 Android
软件类型 开源软件
所属分类 开发工具GUI 测试工具
开源组织 Google
地区 不详
投 递 者 红薯
适用人群 未知
收录时间 2013-10-30

软件简介

Google 开源了 Espresso,这是一种Android自动化测试框架,使测试人员可以在云中x86机器的多线程环境里运行测试,并解决了关于UI测试的并发问题。

示例测试代码:

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()));
}

兼容性:

  1. Codename                        API

  2. API Froyo                           8

  3. Gingerbread                      10

  4. Ice Cream Sandwich          15

  5. Jelly Bean                     16,17,18

  6. KitKat                                19

展开阅读全文

评论

点击引领话题📣 发布并加入讨论🔥
发表了资讯
2016/03/24 00:00

Espresso 2.2.2 发布,Android自动化测试框架

Espresso 2.2.2 发布了。 Espresso是一种Android自动化测试框架,使测试人员可以在云中x86机器的多线程环境里运行测试,并解决了关于UI测试的并发问题。 新特性: espresso 1. Issue 194253: Add support for NavigationView in android support design library 2. Added checks for enabled animations and transitions 3.New ViewMatcher API: withResourceName bug修复: espresso 1. Issue 195331: espresso-core embeds g...

0
35
没有更多内容
加载失败,请刷新页面
点击加载更多
加载中
下一页
发表了博客
{{o.pubDate | formatDate}}

{{formatAllHtml(o.title)}}

{{parseInt(o.replyCount) | bigNumberTransform}}
{{parseInt(o.viewCount) | bigNumberTransform}}
没有更多内容
暂无内容
发表了问答
{{o.pubDate | formatDate}}

{{formatAllHtml(o.title)}}

{{parseInt(o.replyCount) | bigNumberTransform}}
{{parseInt(o.viewCount) | bigNumberTransform}}
没有更多内容
暂无内容
暂无内容
0 评论
28 收藏
分享
OSCHINA
登录后可查看更多优质内容
返回顶部
顶部