KeyDown sends a sequence of keystrokes to the active element. This method is similar to SendKeys but without the implicit termination. Modifiers are not released at the end of each call.
(keys string)
| 327 | // is similar to SendKeys but without the implicit termination. Modifiers are |
| 328 | // not released at the end of each call. |
| 329 | KeyDown(keys string) error |
| 330 | // KeyUp indicates that a previous keystroke sent by KeyDown should be |
| 331 | // released. |
| 332 | KeyUp(keys string) error |
no outgoing calls