Is there a way to replicate the following user interaction in an element using WebdriverIO?
- Click with the left button and hold it down
- Move the mouse while keeping the button pressed
- Release the button
I am looking to simulate a 'swipe' action with the mouse. Unfortunately, I cannot use swipeLeft (or right), as it results in the following error message:
Underlying driver does not implement advanced user interactions yet.
I suspect that the selenium-standalone server I am using does not support this feature.