Is there a way to programmatically trigger a swipe action, like in the GIF example below?
https://i.sstatic.net/7CnXD.gif
I examined the swipe action in Chrome devtools and noticed that it involves 3 events: touchstart, touchmove, touchend. So, I assume that I need to somehow replicate these 3 events in order to achieve a similar result. Any suggestions on how to do this?