HomeSort by relevance Sort by last modified time
    Searched refs:click (Results 1 - 25 of 322) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/mturk/
selenium_support.py 47 sel.click("lnkWorkerSignin")
51 sel.click("Continue")
54 sel.click("/accept")
57 sel.click("//div[5]/table/tbody/tr[2]/td[1]/input")
59 sel.click("link=Sign Out")
  /external/skia/src/views/
SkView.cpp 292 SkView::Click::Click(SkView* target) {
300 SkView::Click::~Click() {
304 void SkView::Click::resetType() {
312 bool SkView::Click::isType(const char type[]) const {
327 void SkView::Click::setType(const char type[]) {
332 void SkView::Click::copyType(const char type[]) {
344 SkView::Click* SkView::findClickHandler(SkScalar x, SkScalar y, unsigned modi) {
364 Click* click = child->findClickHandler(p.fX, p.fY, modi) local
    [all...]
  /external/droiddriver/src/io/appium/droiddriver/helpers/
PollingListeners.java 21 driver.find(watchFinder).click();
30 * {@code watchFinder}, then click {@code dismissFinder} to dismiss it.
40 * @param dismissFinder Identifies the UiElement to click on that will dismiss
49 driver.find(dismissFinder).click();
  /external/droiddriver/src/io/appium/droiddriver/actions/
UiElementActor.java 27 * Clicks this element. The click will be at the center of the visible
30 void click(UiElement uiElement); method in interface:UiElementActor
33 * Long-clicks this element. The click will be at the center of the visible
39 * Double-clicks this element. The click will be at the center of the visible
  /packages/apps/Settings/src/com/android/settings/
WarnedListPreference.java 30 // Ignore this until an explicit call to click()
33 public void click() { method in class:WarnedListPreference
  /developers/samples/android/ui/window/MultiWindowPlayground/Application/src/androidTest/java/
LaunchTests.java 29 import static android.support.test.espresso.action.ViewActions.click;
46 // Click the 'start basic activity' button.
47 onView(withId(R.id.button_start_basic)).perform(scrollTo(), click()); method
56 // Click the 'start unresizable activity' button.
57 onView(withId(R.id.start_unresizable)).perform(scrollTo(), click()); method
67 // Click the 'start adjacent activity' button.
68 onView(withId(R.id.start_adjacent)).perform(scrollTo(), click()); method
77 // Click the 'start activity that handles configuration changes' button.
78 onView(withId(R.id.start_customconfiguration)).perform(scrollTo(), click()); method
88 // Click the 'start activity with minimum size' button
89 onView(withId(R.id.start_minimumsize)).perform(scrollTo(), click()); method
99 onView(withId(R.id.start_launchbounds)).perform(scrollTo(), click()); method
    [all...]
  /development/samples/UiAutomator/src/com/android/test/uiautomator/demos/
SetTwoMinuteAlarm.java 58 allAppsButton.click();
65 appsTab.click();
72 clockApp.click();
97 setAlarm.click();
112 new UiObject(minuteIncreaseButtonSelector).click();
115 // few confirmations to click thru
120 doneButton.click();
122 okButton.click(); // let it fail if neither exists
131 * Helper to click on objects that match the content-description text
141 * Helper to click on object that match the text valu
    [all...]
  /external/testng/src/main/resources/
testng-reports.js 2 $('a.navigator-link').click(function() {
17 $('a.method').click(function() {
23 // to make sure the click() will invoke the listeners)
25 $('.navigator-link').first().click();
28 $('a.collapse-all-link').click(function() {
59 $('a.hide-methods.' + name).click(function() {
67 $('a.show-methods.' + name).click(function() {
77 $('a.hide-methods.' + name).click();
79 $('a.show-methods.' + name).click();
  /frameworks/support/v4/tests/java/android/support/v4/view/
ViewPagerWithTabStripTest.java 21 import static android.support.test.espresso.action.ViewActions.click;
49 // Click the tab title for page #0 and verify that we're still on page #0
50 onView(allOf(isDescendantOfA(withId(R.id.titles)), withText("Red"))).perform(click()); method
51 assertEquals("Click tab #0 on tab #0", 0, mViewPager.getCurrentItem());
53 // Click the tab title for page #1 and verify that we're on page #1
54 onView(allOf(isDescendantOfA(withId(R.id.titles)), withText("Green"))).perform(click()); method
55 assertEquals("Click tab #1 on tab #0", 1, mViewPager.getCurrentItem());
57 // Click the tab title for page #0 and verify that we're on page #0
58 onView(allOf(isDescendantOfA(withId(R.id.titles)), withText("Red"))).perform(click()); method
59 assertEquals("Click tab #0 on tab #1", 0, mViewPager.getCurrentItem())
65 onView(allOf(isDescendantOfA(withId(R.id.titles)), withText("Green"))).perform(click()); method
69 onView(allOf(isDescendantOfA(withId(R.id.titles)), withText("Blue"))).perform(click()); method
    [all...]
ViewPagerWithTitleStripTest.java 21 import static android.support.test.espresso.action.ViewActions.click;
50 // Click the tab title for page #0 and verify that we're still on page #0
51 onView(allOf(isDescendantOfA(withId(R.id.titles)), withText("Red"))).perform(click()); method
52 assertEquals("Click tab #0 on tab #0", 0, mViewPager.getCurrentItem());
54 // Click the tab title for page #1 and verify that we're still on page #0
55 onView(allOf(isDescendantOfA(withId(R.id.titles)), withText("Green"))).perform(click()); method
56 assertEquals("Click tab #1 on tab #0", 0, mViewPager.getCurrentItem());
60 // Click the tab title for page #0 and verify that we're still on page #1
61 onView(allOf(isDescendantOfA(withId(R.id.titles)), withText("Red"))).perform(click()); method
62 assertEquals("Click tab #0 on tab #1", 1, mViewPager.getCurrentItem())
65 onView(allOf(isDescendantOfA(withId(R.id.titles)), withText("Green"))).perform(click()); method
69 onView(allOf(isDescendantOfA(withId(R.id.titles)), withText("Blue"))).perform(click()); method
    [all...]
  /platform_testing/tests/jank/jankmicrobenchmark/src/com/android/jankmicrobenchmark/janktests/
ApiDemoJankTests.java 95 animation.click();
107 option.click();
145 redBallTile.click();
163 flipButton.click();
180 runCloningButton.click();
199 runButton.click();
218 scene2.click();
224 scene1.click();
243 showButton.click();
249 button0.click();
    [all...]
  /platform_testing/libraries/launcher-helper/src/android/support/test/launcherhelper/
AospLauncherStrategy.java 56 cling.findObject(By.clazz(Button.class).text("OK")).click(); method
70 mDevice.findObject(By.desc("Apps")).click(); method
79 cling.click();
85 appsTab.click();
115 mDevice.findObject(By.desc("Apps")).click(); method
124 widgetsTab.click();
135 mDevice.findObject(By.desc("Apps").selected(false)).click();
137 mDevice.findObject(By.desc("Widgets").selected(false)).click();
Launcher3Strategy.java 43 gotItButton.click();
  /platform_testing/tests/functional/permission/src/com/android/functional/permissiontests/
GenericAppPermissionTests.java 106 mDevice.wait(Until.findObject(By.text("GET CONTACT PERMISSION")), pHelper.TIMEOUT).click(); method
108 By.res(PACKAGE_INSTALLER, "permission_allow_button")), pHelper.TIMEOUT).click(); method
123 mDevice.wait(Until.findObject(getContactSelector), pHelper.TIMEOUT).click(); method
126 mDevice.wait(Until.findObject(denySelctor), pHelper.TIMEOUT).click(); method
127 mDevice.wait(Until.findObject(getContactSelector), pHelper.TIMEOUT).click(); method
128 mDevice.wait(Until.findObject(dontAskChkSelector), pHelper.TIMEOUT).click(); method
129 mDevice.wait(Until.findObject(denySelctor), pHelper.TIMEOUT).click(); method
130 mDevice.wait(Until.findObject(getContactSelector), pHelper.TIMEOUT).click();; method
  /platform_testing/libraries/google-app-camera-helper/src/android/platform/test/helpers/
GoogleCameraHelperImpl.java 153 dogfoodMessage.click();
161 dogfoodMessage.click();
173 thanks.click();
180 location.click();
186 sensor.click();
191 mDevice.findObject(By.res(UI_PACKAGE_NAME, "ok_button")).click();
206 getCameraShutter().click();
230 getVideoShutter().click();
232 getVideoShutter().click();
262 getVideoShutter().click();
827 mDevice.wait(Until.findObject(By.text(TEXT_4K_ON)), MENU_WAIT_TIME).click(); method
829 mDevice.wait(Until.findObject(By.text(TEXT_HD_1080)), MENU_WAIT_TIME).click(); method
831 mDevice.wait(Until.findObject(By.text(TEXT_HD_720)), MENU_WAIT_TIME).click(); method
    [all...]
  /external/autotest/client/site_tests/desktopui_SonicExtension/extension_pages/
web_elements.py 85 def click(self): member in class:Button
87 Click on the button.
89 self._element.click()
102 self._element.click()
104 self._element.click()
119 def click(self): member in class:RadioButton
120 """Click the radio button."""
122 # Click one more time to ensure it's clicked
123 # In some corner cases, it needs a second click
  /platform_testing/libraries/chrome-app-helper/src/android/platform/test/helpers/
ChromeHelperImpl.java 105 tos.click();
115 negative.click();
128 positive.click();
196 mDevice.findObject(By.text("Merge tabs and apps")).click(); method
202 mDevice.findObject(By.res(getPackage(), "switch_widget")).click(); method
203 mDevice.findObject(By.text("OK")).click(); method
215 mDevice.findObject(By.text("Merge tabs and apps")).click(); method
221 mDevice.findObject(By.res(getPackage(), "switch_widget")).click(); method
222 mDevice.findObject(By.text("OK")).click(); method
255 urlLoc.click();
    [all...]
  /platform_testing/libraries/play-books-app-helper/src/android/platform/test/helpers/
PlayBooksHelperImpl.java 85 skipButton.click();
90 turnSyncOnButton.click();
106 myLibraryButton.click();
111 allBooksButton.click();
121 bookThumbNail.click();
135 fullScreenReader.click();
144 exitBookButton.click();
165 mDevice.click(nextPageX, nextPageY);
181 mDevice.click(previousPageX, previousPageY);
217 backButton.click();
    [all...]
  /frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/
RenameDocumentUiTest.java 79 bots.main.menuRename().click();
83 bots.main.findDialogOkButton().click();
94 bots.main.menuRename().click();
108 bots.main.menuRename().click();
112 bots.main.findDialogCancelButton().click();
126 bots.main.menuRename().click();
141 bots.main.menuRename().click();
  /external/skia/samplecode/
SampleDraw.cpp 323 virtual SkView::Click* onFindClickHandler(SkScalar x, SkScalar y) {
328 Click* c = new Click(this);
339 virtual bool onClick(Click* click) {
340 if (Click::kUp_State == click->fState) {
341 if (click->isType("maker")) {
342 if (SkPoint::Distance(click->fOrig, click->fCurr) > SkIntToScalar(3))
    [all...]
PerlinPatch.cpp 160 class PtClick : public Click {
163 PtClick(SkView* view, int index) : Click(view), fIndex(index) {}
170 SkView::Click* onFindClickHandler(SkScalar x, SkScalar y, unsigned modi) override {
189 bool onClick(Click* click) override {
190 PtClick* ptClick = (PtClick*)click;
192 fPts[ptClick->fIndex].set(click->fCurr.fX , click->fCurr.fY );
194 SkScalar xDiff = click->fPrev.fX - click->fCurr.fX
    [all...]
SampleLua.cpp 28 static const char gLuaClickHandlerName[] = "lua-click-handler";
126 virtual SkView::Click* onFindClickHandler(SkScalar x, SkScalar y,
139 Click* c = new Click(this);
148 bool onClick(Click* click) override {
149 if (click->getType() != gLuaClickHandlerName) {
150 return this->INHERITED::onClick(click);
154 switch (click->fState) {
155 case Click::kMoved_State
    [all...]
  /platform_testing/libraries/photos-app-helper/src/android/platform/test/helpers/
PhotosHelperImpl.java 131 getStartedButton.click();
147 noThanksButton.click();
156 doneButton.click();
168 nextButton.click();
190 clip.click();
211 holder.click();
219 pause.click();
233 play.click();
253 photosButton.click();
286 photo.click();
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/DocumentClient/src/com/android/cts/documentclient/
DocumentsClientTest.java 54 new UiObject(hamburger).click();
108 findRoot("CtsLocal").click(); method
111 // though, so the click should be ignored.
113 findDocument("VIRTUAL_FILE").click(); method
118 findDocument("FILE1").click(); method
120 // Confirm that the returned file is a regular file caused by the second click.
142 findRoot("CtsLocal").click(); method
145 findDocument("VIRTUAL_FILE").click(); method
183 findRoot("CtsCreate").click(); method
186 findSaveButton().click();
207 findRoot("CtsCreate").click(); method
212 findDocument("FILE2").click(); method
214 findDocument("FILE1").click(); method
232 findRoot("CtsCreate").click(); method
235 findDocument("DIR2").click(); method
313 findRoot("CtsGetContent").click(); method
333 findRoot("CtsCreate").click(); method
335 findDocument("DIR2").click(); method
    [all...]
  /platform_testing/libraries/maps-app-helper/src/android/platform/test/helpers/
MapsHelperImpl.java 101 terms.click();
129 location.click();
141 cling.click();
152 resetView.click();
165 sideMenuTut.click();
189 searchSelect.click();
207 firstAddressResult.click();
227 directionsButton.click();
252 startNavigationButton.click();
280 closeNavigationButton.click();
    [all...]

Completed in 969 milliseconds

1 2 3 4 5 6 7 8 91011>>