How can I simulate a mouse drag in a Typescript Unit test?
I know I can simulate a click with .click(), but I can't find a way to hold the click down instead of just an immediate click. I've tried to find a way to hold down a click, but can't find an option for this use case.
I want to test whether a certain area of the screen can be highlighted and selected, which requires a mouse drag.