Searched defs:maxScrolls (Results 1 - 1 of 1) sorted by relevance

/external/droiddriver/src/com/google/android/droiddriver/scroll/
H A DStepBasedScroller.java42 private final int maxScrolls; field in class:StepBasedScroller
49 * @param maxScrolls the maximum number of scrolls. It should be large enough
61 public StepBasedScroller(int maxScrolls, long perScrollTimeoutMillis, Axis axis, argument
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 i
[all...]

Completed in 129 milliseconds