Home
last modified time | relevance | path

Searched refs:checkFocused (Results 1 – 3 of 3) sorted by relevance

/external/droiddriver/src/io/appium/droiddriver/actions/
DKeyAction.java26 private final boolean checkFocused; field in KeyAction
28 protected KeyAction(long timeoutMillis, boolean checkFocused) { in KeyAction() argument
30 this.checkFocused = checkFocused; in KeyAction()
34 if (checkFocused && element != null && !element.isFocused()) { in maybeCheckFocused()
DTextAction.java48 public TextAction(String text, long timeoutMillis, boolean checkFocused) {
49 super(timeoutMillis, checkFocused);
DSingleKeyAction.java63 public SingleKeyAction(int keyCode, int metaState, long timeoutMillis, boolean checkFocused) { in SingleKeyAction() argument
64 super(timeoutMillis, checkFocused); in SingleKeyAction()