使用appium访问iOS控制中心

前端之家收集整理的这篇文章主要介绍了使用appium访问iOS控制中心前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图使用appium和以下代码打开控制中心:
int halfWidth = driver.manage().window().getSize().width / 2;
    int screenHeight = driver.manage().window().getSize().height;
    driver.swipe(halfWidth,screenHeight-5,halfWidth,screenHeight-300,500);  // driver is instance of IOSDriver

而不是打开控制中心,应用程序只需从底部向上绘制屏幕(使用坐标输入).任何人都知道如何使用应用程序和滑动(或任何其他方式)打开控制中心?

谢谢,查理

解决方法

我们做得到.我在Appium 1.4.13中尝试过,我可以更改设置.

我使用以下代码来更改iPadAir2中的设置.

int height = driver.findElementByClassName("UIAWindow").getSize().getHeight();
int width = driver.findElementByClassName("UIAWindow").getSize().getWidth();
driver.swipe(width-100,height,width-100,height-200,500);
driver.findElementByAccessibilityId("Wi-Fi").click();
原文链接:https://www.f2er.com/iOS/336032.html

猜你在找的iOS相关文章