tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / sc / qa / uitest / chart2 / tdf142851.py
blobe48b9cf46685c997984849ae1ec243c50151e7fa
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/.
9 from uitest.framework import UITestCase
10 from libreoffice.uno.propertyvalue import mkPropertyValues
11 from uitest.uihelper.common import get_state_as_dict, get_url_for_data_file
13 # Bug 142851 - UI Chart Type dialog empty with unsupported combo chart
15 class tdf142851(UITestCase):
16 def test_tdf142851_combo_chart_type(self):
17 with self.ui_test.load_file(get_url_for_data_file("tdf142851.xlsx")):
18 xCalcDoc = self.xUITest.getTopFocusWindow()
19 gridwin = xCalcDoc.getChild("grid_window")
21 gridwin.executeAction("SELECT", mkPropertyValues({"OBJECT": "Diagram 1"}))
22 gridwin.executeAction("ACTIVATE", tuple())
23 xChartMainTop = self.xUITest.getTopFocusWindow()
24 xChartMain = xChartMainTop.getChild("chart_window")
25 xChart = xChartMain.getChild("CID/Page=")
27 with self.ui_test.execute_dialog_through_action(xChart, "COMMAND", mkPropertyValues({"COMMAND" : "DiagramType"})) as xDialog:
28 chartTypeVisible = get_state_as_dict(xDialog.getChild("charttype"))['Visible']
29 subTypeVisible = get_state_as_dict(xDialog.getChild("subtype"))['Visible']
31 self.assertEqual('true', chartTypeVisible)
32 self.assertEqual('true', subTypeVisible)
34 # vim: set shiftwidth=4 softtabstop=4 expandtab: