I\'m trying to simulate some touch events like swap, tap in web-based application using Chrome and Firefox browsers. I\'ve tried to simulate touch events with Actions, Hummb
With jQueryMobile it is quite simple, I execute some Javascript which trigger the corresponding touch events from jQueryMobile.
((JavascriptExecutor)driver).executeScript("window.jQuery('#myId').trigger('swiperight')");
Maybe that helps.