2

Androidアプリの自動化を始めました。「利用規約」画面があります。その中で、「辞退」をクリックすると、アプリが閉じてしまいます。

同じプロセス内でアプリを再起動または再起動するにはどうすればよいですか?

4

1 に答える 1

10

これを試して:

// assuming this method is in a ActivityInstrumentationTestCase2 class
public void test_yourTest() {

    // do your testing

    Solo.sleep(1000);

    // killing all your Activities manually if it doesn't by itself anyway
    Solo.finishOpenedActivities();

    // relaunch your app by calling the same Activity as in the constructor
    // of your ActivityInstrumentationTestCase2
    this.launchActivity(TARGET_PACKAGE_ID, YourStartActivity.class, null);

    Solo.sleep(1000);

    // do your testing
}
于 2012-07-26T16:14:08.957 に答える