From 1018edc3ccb0e049b30830b28d46af203e9571d0 Mon Sep 17 00:00:00 2001 From: Anastasiya Semenkevich Date: Mon, 27 May 2024 15:11:20 +0300 Subject: [PATCH] chore: change scroll method for settings pane MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Tests were failing on my mac with 16-inch display (3456 × 2234) (were not able to scroll the left navigation panel and reach out the buttons at the bottom, like Sign Out for example) --- test/e2e/gui/screens/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/gui/screens/settings.py b/test/e2e/gui/screens/settings.py index 85c98753e1..f409c71dd9 100644 --- a/test/e2e/gui/screens/settings.py +++ b/test/e2e/gui/screens/settings.py @@ -30,7 +30,7 @@ class LeftPanel(QObject): def _open_settings(self, object_name: str): self._settings_section_template.real_name['objectName'] = object_name if not self._settings_section_template.is_visible: - self._scroll.vertical_down_to(self._settings_section_template) + self._scroll.vertical_scroll_to(self._settings_section_template) self._settings_section_template.click() @allure.step('Check back up seed option menu item presence')