Вы можете попробовать приведенный ниже код с помощью сенсорного действия.
Определите мобильный элемент, как указано ниже
MobileElement mobileElement= (MobileElement) driver.findElement(by);
И передайте этот элемент функции ниже.
public void tapTwiceOnElement(MobileElement mobileElement) {
int halfHeight = element.getLocation().getX();
int halfWidth = element.getLocation().getY();
new TouchAction(driver).press(ElementOption.point(halfWidth,halfHeight)).release().perform().press(ElementOption.point(halfWidth,halfHeight)).release().perform();
new TouchAction(driver).press(ElementOption.point(halfWidth,halfHeight)).release().perform().press(ElementOption.point(halfWidth,halfHeight)).release().perform();
}