Skip to content

Commit

Permalink
Merge pull request #2354 from barathraju-43/master
Browse files Browse the repository at this point in the history
fixed mouse(x, y) to accept Number type
  • Loading branch information
ptrthomas committed Jul 3, 2023
2 parents 634408b + c3c2fa6 commit 4862f66
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ default Mouse mouse(String locator) {
}

@AutoDef
default Mouse mouse(int x, int y) {
default Mouse mouse(Number x, Number y) {
return new DriverMouse(this).move(x, y);
}

Expand Down

0 comments on commit 4862f66

Please sign in to comment.