* scrolls a page via the coordinates given * @param {number} x starting x coordinate * @param {number} y starting y coordinate * @param {number} deltax delta x to scroll to target * @param {number} deltay delta y to scroll to target * @param {number} duration duration ratio be the rat
(x, y, targetDeltaX, targetDeltaY, origin, duration)
| 848 | * @returns {!Actions} An action to scroll with this device. |
| 849 | */ |
| 850 | scroll(x, y, targetDeltaX, targetDeltaY, origin, duration) { |
| 851 | return this.insert(this.wheel_, this.wheel_.scroll(x, y, targetDeltaX, targetDeltaY, origin, duration)) |
| 852 | } |
| 853 | |
| 854 | /** |
| 855 | * Inserts an action for moving the mouse `x` and `y` pixels relative to the |