Category:
Appium
public void tapByElement (AndroidElement androidElement) {
TouchAction touch = new TouchAction(driver);
touch.tap(tapOptions().withElement(element(androidElement))).waitAction(waitOptions(ofMillis(250))).perform();
}