Scenario:
- The user starts the app
- The user goes to the "CreateAccountActivity"
- In order to use the application the user has to enter the email and a password
The user clicks "create" which switches to the next activity.
@Test public void createAccountAndLogIn() { onView(withId(R.id.login_create)).perform(click()); onView(withId(R.id.create_email)).perform(clearText(),typeText("xxx@gmail.com")); onView(withId(R.id.create_pass)).perform(clearText(),typeText("pass")); onView(withId(R.id.create_pass_repeat)).perform(clearText(),typeText("pass")); onView(withId(R.id.create_create_button)).perform(click()); }
How to check, after the last line, if the new "MainActivity" was launched?