Scroll在Appium中不起作用

时间:2016-04-10 17:11:17

标签: android automation appium

我使用了scrollToExact& scrollTo方法在appium&中向下滚动页面应用程序崩溃了很多次。

driver.scrollToExact( “印度”)

2 个答案:

答案 0 :(得分:0)

使用此

driver.scrollTo( “印度”);

答案 1 :(得分:0)

自JAVA客户端版本4.0.0(https://github.com/appium/java-client/blob/master/README.md)以来,

scrollToExactscrollTo方法已被删除。

您可以使用UiScrollableUiSelector及其方法滚动任意页面(https://developer.android.com/reference/android/support/test/uiautomator/UiScrollable.html)。

代码示例:

  

@AndroidFindBy(uiAutomator =" new UiScrollable(new   UiSelector())。scrollIntoView(new UiSelector()。textContains(\" Question   \&#34))&#34)

如果你想滚动到页面底部,请创建方法,它将执行几个步骤来查找页面的最后一个元素,否则你将收到一个错误(找不到元素)