答案 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);