nss: upgrade to release 3.73
[LibreOffice.git] / uitest / demo_ui / treelist.py
blob265fa8b975b326f0c3966e54985444f3a5d83bdf
1 # -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
3 # This Source Code Form is subject to the terms of the Mozilla Public
4 # License, v. 2.0. If a copy of the MPL was not distributed with this
5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 from libreoffice.uno.propertyvalue import mkPropertyValues
9 from uitest.uihelper.calc import enter_text_to_cell
11 from uitest.uihelper.common import get_state_as_dict, select_pos
13 from uitest.framework import UITestCase
15 class TreeListTest(UITestCase):
17 def test_expand(self):
19 self.ui_test.create_doc_in_start_center("calc")
21 xCalcDoc = self.xUITest.getTopFocusWindow()
22 xGridWindow = xCalcDoc.getChild("grid_window")
23 enter_text_to_cell(xGridWindow, "B2", "=2+3+4")
24 xGridWindow.executeAction("SELECT", mkPropertyValues({"CELL": "B2"}))
26 self.ui_test.execute_modeless_dialog_through_command(".uno:FunctionDialog")
28 xFunctionDlg = self.xUITest.getTopFocusWindow()
30 xTabs = xFunctionDlg.getChild("tabcontrol")
31 select_pos(xTabs, "1")
33 xTreelist = xTabs.getChild("struct")
35 xTreeEntry = xTreelist.getChild('0')
37 xTreeEntry.executeAction("COLLAPSE", tuple())
39 xTreeEntry.executeAction("EXPAND", tuple())
41 xCancelBtn = xFunctionDlg.getChild("cancel")
42 xCancelBtn.executeAction("CLICK", tuple())
44 self.ui_test.close_doc()
46 # vim: set shiftwidth=4 softtabstop=4 expandtab: