HomeSort by relevance Sort by last modified time
    Searched full:maxscrolls (Results 1 - 2 of 2) sorted by null

  /external/droiddriver/src/com/google/android/droiddriver/scroll/
StepBasedScroller.java 42 private final int maxScrolls;
49 * @param maxScrolls the maximum number of scrolls. It should be large enough
61 public StepBasedScroller(int maxScrolls, long perScrollTimeoutMillis, Axis axis,
63 this.maxScrolls = maxScrolls;
71 * Constructs with default 100 maxScrolls, 1 second for
89 for (; i <= maxScrolls; i++) {
94 if (i < maxScrolls && !scrollStepStrategy.scroll(driver, containerFinder, direction)) {
101 if (i == maxScrolls) {
102 // This is often a program error -- maxScrolls is a safety net; we shoul
    [all...]
Scrollers.java 78 return new StepBasedScroller(100/* maxScrolls */, 1000L/* perScrollTimeoutMillis */,
84 return new StepBasedScroller(100/* maxScrolls */, 1000L/* perScrollTimeoutMillis */,

Completed in 97 milliseconds