public interface TypeRobot
| Modifier and Type | Method and Description |
|---|---|
void |
push(javafx.scene.input.KeyCode... combination)
Pushes a given key combination.
|
void |
push(javafx.scene.input.KeyCodeCombination combination)
Pushes a given key combination.
|
void |
type(javafx.scene.input.KeyCode... keyCodes)
Types given keys one after the other.
|
void |
type(javafx.scene.input.KeyCode keyCode,
int times)
Types a given key multiple times.
|
void push(javafx.scene.input.KeyCode... combination)
combination - the combination to pushvoid push(javafx.scene.input.KeyCodeCombination combination)
combination - the combination to pushvoid type(javafx.scene.input.KeyCode... keyCodes)
keyCodes - the key codes to typevoid type(javafx.scene.input.KeyCode keyCode,
int times)
keyCode - the key code to type times timestimes - number of times to type the keyCode