iOS的水平滑动

时间:2018-04-02 07:31:15

标签: ios selenium-webdriver

我需要通过单选按钮滑动。

enter image description here

我需要在iOS设备中水平滑动。我已经尝试了以下代码,但它只滑动了以下帐户区域,即#34;帐户1(在图像中)"。我也减少了坐标但是它开始垂直滑动。

new TouchAction(iOSDriver).press(0, 334).moveTo(0, 334).release().perform();

我是iOS自动化的新手。

1 个答案:

答案 0 :(得分:0)

问题已通过以下代码得到解决:

JavascriptExecutor js = (JavascriptExecutor) iOSDriver; HashMap scrollObject = new HashMap(); scrollObject.put("direction", "left"); js.executeScript("mobile: swipe", scrollObject);