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 uitest
.uihelper
.common
import change_measurement_unit
11 from uitest
.uihelper
.common
import get_state_as_dict
12 from uitest
.uihelper
.common
import select_pos
13 from uitest
.uihelper
.common
import get_url_for_data_file
15 class tdf138546(UITestCase
):
16 def test_tdf138546(self
):
17 with self
.ui_test
.load_file(get_url_for_data_file("tdf138546.odt")):
19 with
change_measurement_unit(self
, "Centimeter"):
22 with self
.ui_test
.execute_dialog_through_command(".uno:FormatColumns", close_button
="cancel") as xDialog
:
24 colsnf
= xDialog
.getChild("colsnf")
25 width1mf
= xDialog
.getChild("width1mf")
26 self
.assertEqual(get_state_as_dict(colsnf
)["Text"], "2")
27 self
.assertEqual((get_state_as_dict(width1mf
)["Text"])[0:3], "2.0") #2.00 cm
29 with self
.ui_test
.execute_dialog_through_command(".uno:PageDialog", close_button
="cancel") as xDialog
:
30 tabcontrol
= xDialog
.getChild("tabcontrol")
31 select_pos(tabcontrol
, "7") #Columns
32 colsnf
= xDialog
.getChild("colsnf")
33 width1mf
= xDialog
.getChild("width1mf")
34 self
.assertEqual(get_state_as_dict(colsnf
)["Text"], "2")
35 self
.assertEqual((get_state_as_dict(width1mf
)["Text"])[0:3], "2.0") #2.00 cm
37 # vim: set shiftwidth=4 softtabstop=4 expandtab: