Have tried several of the methods mentioned in these forms already. the problem im running into is that the double tap on android is performing inconsistently, and will often register as two slow single taps, which doesnt work for what we are testing.
Here are couple of things we have tried:
actions = TouchAction(driver)
actions.double_tap(element)
actions.perform()
action = TouchAction(self.driver)
action.tap(element=element, count=2).perform()
new TouchAction(driver).press(element).release().perform().press(element).release().perform();