How to set the Event timings in appium?

capabilities.setCapabilites(“eventTiming”=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 timing data …

How to take screenshot in Appium?

srcFile=element.getScreenshotAs(OutputType.FILE); Description When working in an appium automation project, we often need to take a screenshot on test failure. Appium provides a way to take screenshot with the help of …