SetMouseSpeed
From STIQ
setMouseSpeed ( pixels )
Arguments:
- pixels - the number of pixels between "mousemove" events
- Setting this value to 0 means that Selenium will send a "mousemove" event to every single pixel in between the start location and the end location; that can be very slow, and may cause some browsers to force the JavaScript to timeout.
If the mouse speed is greater than the distance between the two dragged objects, Selenium just sends one "mousemove" at the start location and then one final one at the end location.
