gpt4 book ai didi

android - 如何在 Robotium 中重新启动已关闭的应用程序?

转载 作者:太空狗 更新时间:2023-10-29 15:42:52 24 4
gpt4 key购买 nike

我开始自动化我的 Android 应用程序。它有一个“条款和条件”屏幕。这样一来,如果我点击“拒绝”,我的应用程序将被关闭。

如何在同一进程中重新启动或重新启动我的应用程序?

最佳答案

试试这个:

// 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
}

关于android - 如何在 Robotium 中重新启动已关闭的应用程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11644288/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com