Searched refs:longPressAndDragOnText (Results 1 – 2 of 2) sorted by relevance
43 import static android.widget.espresso.TextViewActions.longPressAndDragOnText;205 longPressAndDragOnText(helloWorld.indexOf("little"), helloWorld.indexOf(" boy!"))); in testLongPressAndDragToSelect()215 onView(withId(R.id.textview)).perform(longPressAndDragOnText(4, 6)); in testLongPressAndDragToSelect_emoji()220 onView(withId(R.id.textview)).perform(longPressAndDragOnText(4, 2)); in testLongPressAndDragToSelect_emoji()231 longPressAndDragOnText(text.indexOf("e"), text.length())); in testDragAndDrop()
190 public static ViewAction longPressAndDragOnText(int startIndex, int endIndex) { in longPressAndDragOnText() method in TextViewActions