June 2017
Intermediate to advanced
256 pages
5h 38m
English
Appium gives you the option to construct a MultiTouch action by chaining touch actions. So, we can chain all the actions that the TouchAction class supports. MultiTouch is a collection of TouchActions and allows two operations: add and perform:
Let's take a look at its usage:
TouchAction action1 = new TouchAction(appiumDriver).tap(webElement1);TouchAction action2 = new TouchAction(appiumDriver).tap(webElement2);MultiTouchAction multiTouchAction = new MultiTouchAction(appiumDriver);multiTouchAction.add(action1).add(action2).perform();
Read now
Unlock full access