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 renameSlide(UITestCase
):
16 def test_rename_slide(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
)
22 self
.ui_test
.execute_dialog_through_command(".uno:RenamePage")
23 xDialog
= self
.xUITest
.getTopFocusWindow()
25 name_entry
= xDialog
.getChild("name_entry")
26 name_entry
.executeAction("TYPE", mkPropertyValues({"TEXT":"NewName"}))
28 xOKBtn
= xDialog
.getChild("ok")
29 self
.ui_test
.close_dialog_through_button(xOKBtn
)
32 self
.ui_test
.execute_dialog_through_command(".uno:RenamePage")
33 xDialog
= self
.xUITest
.getTopFocusWindow()
35 name_entry
= xDialog
.getChild("name_entry")
36 self
.assertEqual(get_state_as_dict(name_entry
)["Text"], "NewName")
37 xOKBtn
= xDialog
.getChild("ok")
38 self
.ui_test
.close_dialog_through_button(xOKBtn
)
40 self
.ui_test
.close_doc()
41 # vim: set shiftwidth=4 softtabstop=4 expandtab: