I got a quesition for you,
On my application, i would like to click multiple time (10) on a button. But the application doesn't accept the tap option, so the following code doesnt work :
multi_click = TouchAction(self.driver)
multi_click.tap(self.driver.find_element_by_id('logo'),0,0,8)
And the click action are too slow to be compted as multiple click if i set a "while" :
while i < 10:
self.driver.find_element_by_id('logo').click()
i+= 1
print (i)
Have you any idea ?
Regards