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 libreoffice
.uno
.propertyvalue
import mkPropertyValues
13 class tdf144843(UITestCase
):
15 def test_tdf144843(self
):
16 with self
.ui_test
.create_doc_in_start_center("writer") as document
:
18 self
.xUITest
.executeCommand(".uno:InsertTable?Columns:short=2&Rows:short=2")
20 self
.xUITest
.executeCommand(".uno:SelectAll")
22 self
.assertEqual(-1, document
.TextTables
[0].getCellByName("A1").BackColor
)
24 # Without the fix in place, this test would have crashed here
25 with self
.ui_test
.execute_dialog_through_command(".uno:BackgroundDialog") as xDialog
:
26 btncolor
= xDialog
.getChild("btncolor")
27 btncolor
.executeAction("CLICK", tuple())
29 hex_custom
= xDialog
.getChild("hex_custom")
30 hex_custom
.executeAction("TYPE", mkPropertyValues({"TEXT":"101010"}))
32 self
.assertEqual("0x101010", hex(document
.TextTables
[0].getCellByName("A1").BackColor
))
34 # vim: set shiftwidth=4 softtabstop=4 expandtab: