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/.
7 from uitest
.framework
import UITestCase
8 from libreoffice
.uno
.propertyvalue
import mkPropertyValues
9 from uitest
.uihelper
.common
import get_state_as_dict
11 from uitest
.debug
import sleep
12 from uitest
.uihelper
.common
import select_pos
14 class masterElements(UITestCase
):
16 def test_master_elements(self
):
17 self
.ui_test
.create_doc_in_start_center("impress")
18 xTemplateDlg
= self
.xUITest
.getTopFocusWindow()
19 xCancelBtn
= xTemplateDlg
.getChild("cancel")
20 self
.ui_test
.close_dialog_through_button(xCancelBtn
)
21 document
= self
.ui_test
.get_component()
23 self
.ui_test
.execute_dialog_through_command(".uno:MasterLayouts")
24 xDialog
= self
.xUITest
.getTopFocusWindow()
26 xpagenumber
= xDialog
.getChild("pagenumber")
27 xfooter
= xDialog
.getChild("footer")
28 datetime
= xDialog
.getChild("datetime")
29 xpagenumber
.executeAction("CLICK", tuple())
30 xfooter
.executeAction("CLICK", tuple())
31 datetime
.executeAction("CLICK", tuple())
33 xOKButton
= xDialog
.getChild("ok")
34 xOKButton
.executeAction("CLICK", tuple())
37 self
.ui_test
.execute_dialog_through_command(".uno:MasterLayouts")
38 xDialog
= self
.xUITest
.getTopFocusWindow()
39 xfooter
= xDialog
.getChild("footer")
40 datetime
= xDialog
.getChild("datetime")
41 xpagenumber
= xDialog
.getChild("pagenumber")
43 self
.assertEqual(get_state_as_dict(xfooter
)["Selected"], "false")
44 self
.assertEqual(get_state_as_dict(datetime
)["Selected"], "false")
45 self
.assertEqual(get_state_as_dict(xpagenumber
)["Selected"], "false")
47 xOKButton
= xDialog
.getChild("ok")
48 xOKButton
.executeAction("CLICK", tuple())
50 self
.ui_test
.close_doc()
52 # vim: set shiftwidth=4 softtabstop=4 expandtab: