我使用了scrollToExact& scrollTo方法在appium&中向下滚动页面应用程序崩溃了很多次。
driver.scrollToExact( “印度”)
答案 0 :(得分:0)
使用此
driver.scrollTo( “印度”);
答案 1 :(得分:0)
scrollToExact
和scrollTo
方法已被删除。
您可以使用UiScrollable
和UiSelector
及其方法滚动任意页面(https://developer.android.com/reference/android/support/test/uiautomator/UiScrollable.html)。
代码示例:
@AndroidFindBy(uiAutomator =" new UiScrollable(new UiSelector())。scrollIntoView(new UiSelector()。textContains(\" Question \&#34))&#34)
如果你想滚动到页面底部,请创建方法,它将执行几个步骤来查找页面的最后一个元素,否则你将收到一个错误(找不到元素)