summaryrefslogtreecommitdiffstats
path: root/uitest/demo_ui/tabcontrol.py
diff options
context:
space:
mode:
Diffstat (limited to 'uitest/demo_ui/tabcontrol.py')
-rw-r--r--uitest/demo_ui/tabcontrol.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/uitest/demo_ui/tabcontrol.py b/uitest/demo_ui/tabcontrol.py
index 79a2948cb458..2dbe3ef842bf 100644
--- a/uitest/demo_ui/tabcontrol.py
+++ b/uitest/demo_ui/tabcontrol.py
@@ -8,6 +8,7 @@
from libreoffice.uno.propertyvalue import mkPropertyValues
from uitest.uihelper.calc import enter_text_to_cell
+from uitest.uihelper.common import select_pos
from uitest.framework import UITestCase
@@ -27,7 +28,7 @@ class TabControlTest(UITestCase):
xFunctionDlg = self.xUITest.getTopFocusWindow()
xTabs = xFunctionDlg.getChild("tabs")
- xTabs.executeAction("SELECT", mkPropertyValues({"POS":"1"}))
+ select_pos(xTabs, "1")
xCancelBtn = xFunctionDlg.getChild("cancel")
xCancelBtn.executeAction("CLICK", tuple())