如何处理webdriverIO和mocha中的iOS弹出窗口?

问题描述 投票:0回答:2

我正在使用 WebdriverIO 开发 Android 和 iOS 应用程序自动化。我无法检查浏览器堆栈检查视图中的弹出窗口。

您能帮忙吗?

appium webdriver-io appium-ios
2个回答
3
投票

我也无法检查 Browserstack 中的本机警报,但我使用 Appium Inspector 打开了应用程序:

appium inspector in the browserstack

然后我就可以轻松检查

appium inspector


0
投票

我尝试使用 browser.dismissAlert() 并且它有效。

在页面文件中,我这样定义了这个函数:

page.js

 async popupHandle() {
     browser.dismissAlert()
 }

在测试文件中,我是这样使用的:

测试.js

await page.popupHandle()
© www.soinside.com 2019 - 2024. All rights reserved.