Event timings

Code: caps.setCapability(“eventTimings”, true) Enable or disable Appium’s ability to report timing data for various internal events (e.g., the start and end of each command). To enable, set to true. The …

How to perform multiple touch on any device?

Code Snippet: TouchAction fingerOne = new TouchAction(driver); TouchAction fingerTwo = new TouchAction(driver); MultiTouchAction action = new MultiTouchAction(driver); fingerOne.press(20, 20); fingerOne.moveTo(10, 100); fingerOne.release(); fingerTwo.press(30, 30); fingerTwo.moveTo(20, 200); fingerTwo.release(); action.add(fingerOne); action.add(fingerTwo); action.perform();