Skip to content

Instantly share code, notes, and snippets.

@prolificcoder
Created February 3, 2017 23:42
Show Gist options
  • Save prolificcoder/d762ac019f3198f2183283e146c86656 to your computer and use it in GitHub Desktop.
Save prolificcoder/d762ac019f3198f2183283e146c86656 to your computer and use it in GitHub Desktop.
dependencies {
androidTestCompile 'com.android.support.test.uiautomator:uiautomator-v18:2.1.2'
}
public static String findChildElementCDByIndex(int index) {
BySelector messagesListSelector = By.desc("ListView Recycler");
uiDevice.wait(Until.hasObject(messagesListSelector),6000);
UiObject2 messageList = uiDevice.findObject(messagesListSelector);
messageList.getChildren().get(index).getContentDescription();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment