测试时卸载应用程序

发布于 2024-12-19 21:12:41 字数 131 浏览 3 评论 0原文

我刚开始使用 Robotium 在 Android 中进行测试。在运行某些测试之前,如何以编程方式卸载并安装应用程序?

例如,为了让我测试登录活动,我需要确保登录凭据不会从应用程序的先前运行中保存。或者还有其他方法可以做到这一点吗?

I'm new to testing in Android with Robotium. How can I programatically uninstall and then install the application before running some of the tests?

For example, in order for me to test the login activity, I need to make sure the login credentials are not saved from a prior run of the app. Or is there another way to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

幻梦 2024-12-26 21:12:41

您可以使用以下代码(在您正在调试的计算机上)来卸载应用程序:

Runtime rt = Runtime.getRuntime();
Process pr = rt.exec("adb uninstall your.package");
pr.waitFor();

You could use the following piece of code (on the machine you're debugging from) to uninstall your application:

Runtime rt = Runtime.getRuntime();
Process pr = rt.exec("adb uninstall your.package");
pr.waitFor();
为你鎻心 2024-12-26 21:12:41

-您还可以使用 UIAutomator 来做到这一点
- 开始测试时从 Play 商店安装应用程序,并在测试完成后卸载。
-此外,它将始终从 Play 商店安装新版本。

-You can also do that by using UIAutomator
-Install the application from play store when starting your test and uninstall after finishing the test.
-Additionally It will always install new version from play store.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文