* Inserts an action to press a mouse button at the mouse's current location. * * @param {!Button=} button The button to press; defaults to `LEFT`. * @return {!Actions} a self reference.
(button = Button.LEFT)
| 824 | * @return {!Actions} a self reference. |
| 825 | */ |
| 826 | press(button = Button.LEFT) { |
| 827 | return this.insert(this.mouse_, this.mouse_.press(button)) |
| 828 | } |
| 829 | |
| 830 | /** |
| 831 | * Inserts an action to release a mouse button at the mouse's current |
no test coverage detected