Skip to content

Commit

Permalink
Merge pull request #2408 from thatdogmachine/recover-macos
Browse files Browse the repository at this point in the history
fix: recover macos functionality
  • Loading branch information
pdenert authored Nov 13, 2024
2 parents d681d27 + 51e795e commit 1ce91e9
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
4 changes: 4 additions & 0 deletions packages/patrol/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## Unreleased

- Fix macos functionality. (#2408)

## 3.13.0-dev.2

- Bump `patrol_log` version.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,9 @@
on selector: Selector,
inApp bundleId: String,
dismissKeyboard: Bool,
withTimeout timeout: TimeInterval?
withTimeout timeout: TimeInterval?,
dx: CGFloat,
dy: CGFloat
) throws {
try runAction("enterText") {
throw PatrolError.methodNotImplemented("enterText")
Expand All @@ -139,7 +141,9 @@
on selector: IOSSelector,
inApp bundleId: String,
dismissKeyboard: Bool,
withTimeout timeout: TimeInterval?
withTimeout timeout: TimeInterval?,
dx: CGFloat,
dy: CGFloat
) throws {
try runAction("enterText") {
throw PatrolError.methodNotImplemented("enterText")
Expand All @@ -151,7 +155,9 @@
byIndex index: Int,
inApp bundleId: String,
dismissKeyboard: Bool,
withTimeout timeout: TimeInterval?
withTimeout timeout: TimeInterval?,
dx: CGFloat,
dy: CGFloat
) throws {
try runAction("enterText") {
throw PatrolError.methodNotImplemented("enterText")
Expand Down

0 comments on commit 1ce91e9

Please sign in to comment.