* Inserts an action to press a single key. * * @param {(Key|string|number)} key the key to press. This key may be * specified as a Key value, a specific unicode code point, * or a string containing a single unicode code point. * @return {!Actions} a self reference.
(key)
| 771 | * @return {!Actions} a self reference. |
| 772 | */ |
| 773 | keyDown(key) { |
| 774 | return this.insert(this.keyboard_, this.keyboard_.keyDown(key)) |
| 775 | } |
| 776 | |
| 777 | /** |
| 778 | * Inserts an action to release a single key. |
no test coverage detected