- Device : iPhone 5s running iOS 9.3.2
- Xcode : 7.3
- Appium : 1.5.3 (Ara)
Problem: i can connect my device on my mac and run appium inspector ( enable ‘ui automation switch’ ). i use python to make script. i want to use gesture to skip my welcome page when a new user install my app. Here is the code i use Swipe to create:
wd.execute_script("mobile: swipe", {"touchCount": 1 , "startX": 305, "startY": 247, "endX": 17, "endY": 242, "duration": 0.5 })
unfortunately, this code doesn’t work any more
what should i do? help!