测试时卸载应用程序
我刚开始使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用以下代码(在您正在调试的计算机上)来卸载应用程序:
You could use the following piece of code (on the machine you're debugging from) to uninstall your application:
-您还可以使用 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.