Hi all
I’m using Appium to automate iOS hybrid app with Python.
After I switch to the WebView, I use TouchAction to perform a drag and drop.
The code is like this:
TouchAction(driver).long_press(start_element).move_to(end_element).release().perform()
and it doesn’t work.
Error code is “Yet impelemented”.
I have search in google, some people said, the TouchAction works in real device, and it’s not supported at simulator.
I’m really a little bit confused.
Could any one give me some advice that how to drag and drop at WebView in simulator with iOS hybrid?
or confirm that, the TouchAction works at real device, is not supported at simulator.
Your response will be really appreciated.
Thanks
Fox