Thanks a lot, your link helped me
I was using such code:
self.driver.tap(128.90625, 335.90625) without success
but the right one example:
self.driver.tap([(128.90625, 335.90625 )])
so you have to use array of coordinates, even if there is just one coordinate.
Thanks! Now its working!