Skip to content

Instantly share code, notes, and snippets.

@narenmanoharan
Created April 29, 2020 19:39
Show Gist options
  • Save narenmanoharan/3e77dc2268797252e078afb74a661ee7 to your computer and use it in GitHub Desktop.
Save narenmanoharan/3e77dc2268797252e078afb74a661ee7 to your computer and use it in GitHub Desktop.
Sample integration test with action and assertions.
@Test
fun createFutureExpense() {
goToLoginScreen()
.login(user.email, user.password)
.check(thatOnDashboardScreen())
.captureScreenshot(rootView, "dashboard_accounts_tabs")
.clickGoalsToggle()
.captureScreenshot(rootView, "dashboard_goals_tabs")
.createEvent()
.check(thatOnCreatePathEventScreen())
.captureScreenshot(rootView, "create_path_event")
.clickFutureExpense()
.check(thatOnFutureExpenseScreen())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment