gpt4 book ai didi

java - 如何使用 appium 关闭/杀死 android 设备上的应用程序?

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:39:18 31 4
gpt4 key购买 nike

为了终止/关闭应用程序,我尝试了 driver.close()、driver.closeApp()、driver.quit(),但该应用程序一直在后台运行。这些命令之一真的应该关闭应用程序吗?如果是这样,如何?如果没有 - 有人可以提供替代解决方案吗?

最佳答案

在使用 appium 时,您调用的所有方法都不会从后台删除应用程序。这就是他们所指的:

((AppiumDriver)driver).closeApp(); // Close the app which was provided in the capabilities at session creation   

((AppiumDriver)driver).close(); // from *RemoteWebDriver.java*, used to close the current browser page

((AppiumDriver)driver).quit(); // quits the session created between the client and the server

所以你可以尝试做的是:

((AppiumDriver)driver).resetApp(); // Reset the currently running app for this session

或者尝试将这两者结合起来:

((AppiumDriver)driver).removeApp(<package name>); // Remove the specified app from the device (uninstall)
((AppiumDriver)driver).installApp(<path to apk>); // Install an app on the mobile device

关于java - 如何使用 appium 关闭/杀死 android 设备上的应用程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37178914/

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