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

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

Completed in 276 milliseconds