Home
last modified time | relevance | path

Searched refs:contentDescription (Results 1 – 4 of 4) sorted by relevance

/cts/tests/autofillservice/src/android/autofillservice/cts/
DCheckoutActivityTest.java339 final String contentDescription = image.getContentDescription();
341 assertThat(contentDescription).isEqualTo("One image is worth thousand words");
343 assertThat(contentDescription).isNull();
DUiBot.java408 public UiObject2 assertShownByContentDescription(String contentDescription) throws Exception {
409 final UiObject2 object = waitForObject(By.desc(contentDescription));
410 assertWithMessage("No node with content description '%s'", contentDescription).that(object)
/cts/tests/tests/widget/src/android/widget/cts/
DRemoteViewsTest.java173 CharSequence contentDescription = mContext.getString(R.string.remote_content_description); in testSetContentDescription() local
174 mRemoteViews.setContentDescription(R.id.remoteView_frame, contentDescription); in testSetContentDescription()
176 assertTrue(TextUtils.equals(contentDescription, view.getContentDescription())); in testSetContentDescription()
/cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
DAccessibilityWindowQueryTest.java174 .findAccessibilityNodeInfosByText(mActivity.getString(R.string.contentDescription)) in testFindByContentDescription()