xmlsecurity: fix --without-system-nss build
[LibreOffice.git] / uitest / math_tests / tdf147755.py
blob710bf7efa6b4832d3fdefc8b9155a139bb7d8c4a
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
13 class Tdf147755(UITestCase):
15 def test_tdf147755(self):
16 with self.ui_test.create_doc_in_start_center("math"):
18 with self.ui_test.execute_dialog_through_command(".uno:SymbolCatalogue", close_button="close") as xDialog:
19 xSymbolset = xDialog.getChild("symbolset")
20 self.assertEqual("Arabic", get_state_as_dict(xSymbolset)["DisplayText"])
22 xOk = xDialog.getChild("ok")
23 xOk.executeAction("CLICK", tuple())
25 xMathDoc = self.xUITest.getTopFocusWindow()
26 xEditView = xMathDoc.getChild("editview")
28 # Without the fix in place, this test would have failed with
29 # AssertionError: '%arRay ' != ''
30 self.assertEqual("%arRay ", get_state_as_dict(xEditView)["Text"])
32 # vim: set shiftwidth=4 softtabstop=4 expandtab: