Searched refs:mouseDragOnText (Results 1 – 2 of 2) sorted by relevance
28 import static android.widget.espresso.TextViewActions.mouseDragOnText;92 mouseDragOnText(helloWorld.indexOf("llo"), helloWorld.indexOf("ld!"))); in testSelectTextByDrag()113 mouseDragOnText( helloWorld.indexOf("ld!"), helloWorld.indexOf("llo"))); in testSelectTextByDrag_reverse()156 mouseDragOnText(text.indexOf("c"), text.indexOf("h"))); in testContextMenu()192 mouseDragOnText(text.indexOf("d"), text.indexOf("f") + 1)); in testDragAndDrop()195 mouseDragOnText(text.indexOf("e"), text.length())); in testDragAndDrop()209 mouseDragOnText(text.indexOf("d"), text.indexOf("f") + 1)); in testDragAndDrop_longClick()
235 public static ViewAction mouseDragOnText(int startIndex, int endIndex) { in mouseDragOnText() method in TextViewActions