Hi @Aish
I am not sure how are you planning to pinch to zoom using swipe… What is your strategy for that?
To swipe I am using a command like this:
driver.execute_script(“mobile: swipe”, startX: 10, startY: 10, endX: 50, endY: 10, duration: 0.5)
This will swipe from (10,10) to (50,10). I’ve created a method to implement that to specific elements, so you pass an element and based on the element position and size swipe on it, but I don’t know how can you do make it pinch to zoom with that…