Skip to content

Commit

Permalink
docs: Update percent value for scroll gesture (#767)
Browse files Browse the repository at this point in the history
The percent value should less than or equal to 1
  • Loading branch information
ashwink-tech authored Apr 22, 2024
1 parent 6b418fc commit ccc7d54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/android-mobile-gestures.md
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ The returned value is a boolean one and equals to `true` if the object can still
boolean canScrollMore = (Boolean) ((JavascriptExecutor) driver).executeScript("mobile: scrollGesture", ImmutableMap.of(
"left", 100, "top", 100, "width", 200, "height", 200,
"direction", "down",
"percent", 3.0
"percent", 1.0
));
```

Expand Down

0 comments on commit ccc7d54

Please sign in to comment.