EspressoAndroid UI 的快速自動化測試框架
Google 開源了 Espresso,這是一種Android自動化測試框架,使測試人員可以在云中x86機器的多線程環(huán)境里運行測試,并解決了關(guān)于UI測試的并發(fā)問題。
示例測試代碼:
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()));
}
兼容性:
-
Codename API
-
API Froyo 8
-
Gingerbread 10
-
Ice Cream Sandwich 15
-
Jelly Bean 16,17,18
-
KitKat 19
評論
圖片
表情
