は、androidTestフォルダに、私はこのテストケースを持っていることをやってからそれを停止する方法:エスプレッソはテストが終了した後になぜアプリを離れるのですか? Androidのメーカーで
@RunWith(AndroidJUnit4.class)
@LargeTest
public class LoginActivityTest {
@Rule
public ActivityTestRule<LoginActivity> activityTestRule =
new ActivityTestRule<>(LoginActivity.class);
@Test
public void teamsListIsSortedAlphabetically() {
onView(withId(R.id.etEmail)).perform(click(), replaceText("[email protected]")
);
onView(withId(R.id.etPassword)).perform(click(), replaceText("asdasd")
);
onView(withId(R.id.bLoginSubmit)).perform(click());
}
}
アプリはLoginActivityを起動し、ログインすると、次の活動を1〜2秒間表示され、ランチャーの画面に私を残して活動を終了します。エスプレッソをその画面に残すにはどうすればいいですか?
[エスプレッソテストの完了時にAndroidアプリを残してください](http://stackoverflow.com/questions/29950640/leave-android-app-in-final-state-on-espresso-test-completion ) –
あなたはこの質問をチェックしたいかもしれません:http://stackoverflow.com/questions/42299276/android-directly-launch-the-activity-fragment-that-is-under-development –