chore: change scroll method for settings pane

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)
This commit is contained in:
Anastasiya Semenkevich 2024-05-27 15:11:20 +03:00 committed by Anastasiya
parent 8c37767ea6
commit 1018edc3cc
1 changed files with 1 additions and 1 deletions

View File

@ -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')