diff --git a/CHANGELOG.md b/CHANGELOG.md index 058af3af..95e24c78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.18.2] - 2024-05-06 + +### Fixed +- backend: Adapting to new Speculos API `finger_touch` function. + ## [1.18.1] - 2024-04-15 ### Fixed diff --git a/src/ragger/backend/speculos.py b/src/ragger/backend/speculos.py index 8067bbeb..85a849bc 100644 --- a/src/ragger/backend/speculos.py +++ b/src/ragger/backend/speculos.py @@ -211,7 +211,7 @@ def both_click(self) -> None: self._client.press_and_release("both") def finger_touch(self, x: int = 0, y: int = 0, delay: float = 0.1) -> None: - self._client.finger_touch(x, y, delay) + self._client.finger_touch(x, y, delay=delay) def _save_screen_snapshot(self, snap: BytesIO, path: Path) -> None: self.logger.info(f"Saving screenshot to image '{path}'") diff --git a/tests/snapshots/flex/waiting_screen/00000.png b/tests/snapshots/flex/waiting_screen/00000.png index 926a0e3e..3a560e79 100644 Binary files a/tests/snapshots/flex/waiting_screen/00000.png and b/tests/snapshots/flex/waiting_screen/00000.png differ