Searched refs:click (Results 1 - 3 of 3) sorted by relevance

/frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/
H A DUiObject.java274 * adjustments should be made to the click coordinates.
291 * Performs a click at the center of the visible bounds of the UI element represented
297 public boolean click() throws UiObjectNotFoundException { method in class:UiObject
321 * Performs a click at the center of the visible bounds of the UI element represented
324 * This method differ from {@link UiObject#click()} only in that this method waits for a
325 * a new window transition as a result of the click. Some examples of a window transition:
356 return getInteractionController().click(rect.left + 5, rect.top + 5);
386 return getInteractionController().click(rect.right - 5, rect.bottom - 5);
454 * When you call this method, the method first simulates a {@link #click()} on
489 // long click lef
[all...]
H A DUiDevice.java329 * Perform a click at arbitrary coordinates specified by the user
333 * @return true if the click succeeded else false
335 public boolean click(int x, int y) { method in class:UiDevice
339 return getAutomatorBridge().getInteractionController().click(x, y);
H A DInteractionController.java142 * block until the device begins to process the click at which point the call returns
296 public boolean click(int x, int y) { method in class:InteractionController
297 Log.d(LOG_TAG, "click (" + x + ", " + y + ")");

Completed in 659 milliseconds