简体   繁体   中英

Swipe or ScrollTo or TouchAction not working in iOS Simulator with Appium 1.4.13, Xcode 7.0.1, IOS 8.x/9.0 and Java-Client 3.2.0

Swipe or ScrollTo or TouchAction not working in iOS Simulator with Appium 1.4.13, Xcode 7.0.1, iOS 8.x/9.0 and Java-Client 3.2.0

Any working solution would be appreciated.

Implement this scrollTo method:

JavascriptExecutor js = (JavascriptExecutor) iosDriver; 
HashMap <String, String> scrollObject = new HashMap <String, String>();
scrollObject.put("element", ((RemoteWebElement)iosDriver.findElement(By.name("elementName"))).getId());
js.executeScript("mobile: scroll", scrollObject);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM