appium-带有Appium的Android和iOS应用中的sso -cookies

发布于 2025-01-22 15:15:52 字数 460 浏览 0 评论 0原文

我正在测试的应用程序使用基于网站的登录名。因此,一旦单击本机应用程序中的登录按钮,网络浏览量即可打开您可以输入凭据的位置。完成后,设置了一个单符号cookie,WebView关闭,本机应用程序将打开。

由于SSO结束,重置甚至重新安装应用程序都不会将用户列入。但是,为了使自动测试独立于彼此,我想在每个测试运行开始时始终登录用户。

我知道您可以使用硒/appium删除cookie,https://appium.io/docs/en/commands/web/storage/delete-allete-all-cookies/“ rel =“ nofollow noreforler”> https: //appium.io/docs/en/commands/web/storage/delete-all-cookies/ ,但这显然仅在WebView上下文中起作用。

是否有其他方法可以在Android和iOS中删除SSO cookie,并重置应用程序?

The app I am testing uses a website-based login. So as soon as you click on the login button in the native app a webview opens up where you can enter your credentials. Once done, a single-sign-on cookie is set, the webview closes and the native app opens back up.

Because of the SSO closing, resetting or even reinstalling the app does not log the user out. However, in order to make the automated tests independent of each other I want to have the user always logged out at the beginning of each test run.

I know you can delete cookies with Selenium/Appium with https://appium.io/docs/en/commands/web/storage/delete-all-cookies/, but this apparently only works when in a webview context.

Is there any other way to delete SSO cookies in Android and iOS and reset app the state?

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

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

发布评论

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

评论(1

你的往事 2025-01-29 15:15:52

您可能会尝试,不确定在您的情况下它是否有效:

(1)检查driver.getContexThandles() set inctains webview_chrome输入,如果有的话,您可以运行driver.context(“ WebView_chrome”)然后 driver.manage()。deleteallcookies()将完​​成工作。

(2)如果WebView_Chrome不存在,则可以尝试运行getDriver()。activateapp(“ com.android.chrome”),然后是上述指令(1)。

You might try, not sure if it will work in your case:

(1) check if driver.getContextHandles() set contains WEBVIEW_chrome entry and if it does, you can run driver.context("WEBVIEW_chrome") and then driver.manage().deleteAllCookies() will do the job.

(2) if WEBVIEW_chrome is not there, you might try running getDriver().activateApp("com.android.chrome") and then the above instruction (1).

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