如何使用Appium在iOS设备上执行左键滑动

时间:2016-06-07 14:40:33

标签: javascript java selenium selenium-webdriver appium

我想使用appium在特定的xpath上执行滑动。无论如何我能做到。

enter image description here

2 个答案:

答案 0 :(得分:0)

对于上述情况,请执行以下操作:

WebElement elem = driver.findElementByXPath("//ur elem xpath");
int x = elem.getLocation().getX();
int y = elem.getLocation().getY();

TouchAction action = new TouchAction(driver);
 action.longPress(x+5,y+5).waitAction(3000).moveTo(100,0).perform().release();

让我知道会发生什么

答案 1 :(得分:0)

@noor这对我有用

JavascriptExecutor js = (JavascriptExecutor) driver;
    HashMap<String, Double> swipeObject = new HashMap<String, Double>();
        swipeObject.put("startX", 279.2);
        swipeObject.put("startY", 93.1);
        swipeObject.put("endX", 136.1);
        swipeObject.put("endY", 92.6);
        swipeObject.put("duration", 3.0);
        js.executeScript("mobile: flick", swipeObject);