From c10088a535b8a0ef4da2773547423ef169d08743 Mon Sep 17 00:00:00 2001 From: Xisco Fauli Date: Tue, 7 Mar 2017 18:37:51 +0100 Subject: tdf#105677: Add uitest MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I00365541922785f4f33e762d034e921d5502d5f0 Reviewed-on: https://gerrit.libreoffice.org/34955 Tested-by: Jenkins Reviewed-by: Xisco FaulĂ­ --- uitest/impress_tests/tdf105677.py | 50 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 uitest/impress_tests/tdf105677.py (limited to 'uitest/impress_tests') diff --git a/uitest/impress_tests/tdf105677.py b/uitest/impress_tests/tdf105677.py new file mode 100644 index 000000000000..1c60c7d974ae --- /dev/null +++ b/uitest/impress_tests/tdf105677.py @@ -0,0 +1,50 @@ +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# + +from uitest.framework import UITestCase +from uitest.uihelper.common import select_pos + +class tdf105677(UITestCase): + + def test_background_dialog(self): + + self.ui_test.create_doc_in_start_center("impress") + + xTemplateDlg = self.xUITest.getTopFocusWindow() + xCancelBtn = xTemplateDlg.getChild("cancel") + self.ui_test.close_dialog_through_button(xCancelBtn) + + self.ui_test.execute_dialog_through_command(".uno:PageSetup") + + xPageSetupDlg = self.xUITest.getTopFocusWindow() + tabcontrol = xPageSetupDlg.getChild("tabcontrol") + select_pos(tabcontrol, "1") + + xColorBtn = xPageSetupDlg.getChild("btncolor") + xColorBtn.executeAction("CLICK", tuple()) + + xOkBtn = xPageSetupDlg.getChild("ok") + xOkBtn.executeAction("CLICK", tuple()) + + xConfirmDlg = self.xUITest.getTopFocusWindow() + + xYesBtn = xConfirmDlg.getChild("no") + xYesBtn.executeAction("CLICK", tuple()) + + document = self.ui_test.get_component() + + self.assertEqual(document.DrawPages.getByIndex(0).Background.FillColor, 7512015) + + #Somehow we need to use undo twice in order to revert the background + self.xUITest.executeCommand(".uno:Undo") + self.xUITest.executeCommand(".uno:Undo") + + document = self.ui_test.get_component() + self.assertEqual(document.DrawPages.getByIndex(0).Background, None) + + self.ui_test.close_doc() + +# vim: set shiftwidth=4 softtabstop=4 expandtab: -- cgit