Typical
I managed to make it work with the mouse library. Instead of using mouse.move(x,y,absolute,duration)
I used mouse._os_mouse.move_to(x,y)
and mouse._os_mouse.move_relative(x,y)
. Take into account that if you want a smooth effect you'll have to implement it yourself using something like time.sleep(s)
.