Uiautomator滚动查找
- 官网
https://developer.android.com/reference/android/support/test/uiautomator/UiSelector.html - Uiautomator 定位
写法:ele = new UiSelector().text(“text") 滚动查找: new UiScrollable(new UiSelector().scrollable(true).instance(0)).scrollIntoView(new UiSelector().text(“查找的 文本”).instance(0));
本文来自博客园,作者:弩哥++,转载请注明原文链接:https://www.cnblogs.com/bangbangzoutianya/p/15196280.html