예제 #1
0
 /** Swipe from the down to up for a second */
 public void dragUp() {
   super.dragUp();
   HashMap<String, String> scrollObject = new HashMap<String, String>();
   scrollObject.put("direction", "down");
   webDriver.executeScript("mobile: scroll", scrollObject);
 }
예제 #2
0
 /** Swipe from the left to right for a second */
 public void swipeRight() {
   super.swipeRight();
   HashMap<String, String> scrollObject = new HashMap<String, String>();
   scrollObject.put("direction", "right");
   webDriver.executeScript("mobile: scroll", scrollObject);
 }