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 uitest
.framework
import UITestCase
11 from uitest
.uihelper
.common
import get_state_as_dict
12 from libreoffice
.uno
.propertyvalue
import mkPropertyValues
14 #test FontWorks dialog
15 class fontWorksDialog(UITestCase
):
17 def test_fontwork_selector(self
):
18 with self
.ui_test
.create_doc_in_start_center("writer"):
20 with self
.ui_test
.execute_dialog_through_command(".uno:FontworkGalleryFloater", close_button
="cancel") as xDialog
:
21 FontWorkSelector
= xDialog
.getChild("ctlFavoriteswin")
22 # Select element with id (3)
23 element3
= FontWorkSelector
.getChild("2")
24 element3
.executeAction("SELECT", mkPropertyValues({}))
25 self
.assertEqual(get_state_as_dict(FontWorkSelector
)["SelectedItemPos"], "2")
26 self
.assertEqual(get_state_as_dict(FontWorkSelector
)["SelectedItemId"], "3")
27 self
.assertEqual(get_state_as_dict(FontWorkSelector
)["VisibleCount"], "36")
29 # Select element with id (7)
30 element7
= FontWorkSelector
.getChild("6")
31 element7
.executeAction("SELECT", mkPropertyValues({}))
32 self
.assertEqual(get_state_as_dict(FontWorkSelector
)["SelectedItemPos"], "6")
33 self
.assertEqual(get_state_as_dict(FontWorkSelector
)["SelectedItemId"], "7")
36 # vim: set shiftwidth=4 softtabstop=4 expandtab: