1 # -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
3 # This file is part of the LibreOffice project.
5 # This Source Code Form is subject to the terms of the Mozilla Public
6 # License, v. 2.0. If a copy of the MPL was not distributed with this
7 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 from libreoffice
.uno
.propertyvalue
import mkPropertyValues
11 from uitest
.uihelper
.calc
import enter_text_to_cell
13 from uitest
.uihelper
.common
import select_pos
15 from uitest
.framework
import UITestCase
17 class TreeListTest(UITestCase
):
19 def test_expand(self
):
21 with self
.ui_test
.create_doc_in_start_center("calc"):
23 xCalcDoc
= self
.xUITest
.getTopFocusWindow()
24 xGridWindow
= xCalcDoc
.getChild("grid_window")
25 enter_text_to_cell(xGridWindow
, "B2", "=2+3+4")
26 xGridWindow
.executeAction("SELECT", mkPropertyValues({"CELL": "B2"}))
28 with self
.ui_test
.execute_modeless_dialog_through_command(".uno:FunctionDialog", close_button
="cancel") as xFunctionDlg
:
31 xTabs
= xFunctionDlg
.getChild("tabcontrol")
32 select_pos(xTabs
, "1")
34 xTreelist
= xTabs
.getChild("struct")
36 xTreeEntry
= xTreelist
.getChild('0')
38 xTreeEntry
.executeAction("COLLAPSE", tuple())
40 xTreeEntry
.executeAction("EXPAND", tuple())
44 # vim: set shiftwidth=4 softtabstop=4 expandtab: