Hi All,
In iOS swipe method(using python) is not working properly for me as
When I try to swipe down then its working fine below is code used
wd.execute_script("mobile: swipe", {"touchCount": 1 , "startX": 157, "startY": 331, "endX": 157, "endY": 30, "duration":1 })
But when I try for swipe up then its not working below is code
wd.execute_script("mobile: swipe", {"touchCount": 0 , "startX": 157, "startY":30, "endX": 157, "endY": 331, "duration":1 })
While executing above command then it just skipping
I am mad of how to do it
is there any other method we have for scrolling in iOS
can any one help me out