Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 422 Bytes

test_-_espresso,_rxpresso.md

File metadata and controls

25 lines (18 loc) · 422 Bytes

Test - UI

UI 測試框架:

  • Robotium
  • uiautomator
  • espresso
  • Appium
  • Calabash

跨 iOS 使用 Appium 或 Calabash

RxPresso

rxPresso.given(mockedRepo.getUser("id"))
           .withEventsFrom(Observable.just(new User("some name")))
           .expect(any(User.class))
           .thenOnView(withText("some name"))
           .perform(click());

See Also