Searched refs:contentDescription (Results 1 – 4 of 4) sorted by relevance
339 final String contentDescription = image.getContentDescription();341 assertThat(contentDescription).isEqualTo("One image is worth thousand words");343 assertThat(contentDescription).isNull();
408 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)
173 CharSequence contentDescription = mContext.getString(R.string.remote_content_description); in testSetContentDescription() local174 mRemoteViews.setContentDescription(R.id.remoteView_frame, contentDescription); in testSetContentDescription()176 assertTrue(TextUtils.equals(contentDescription, view.getContentDescription())); in testSetContentDescription()
174 .findAccessibilityNodeInfosByText(mActivity.getString(R.string.contentDescription)) in testFindByContentDescription()