summaryrefslogtreecommitdiff
path: root/uitest
diff options
context:
space:
mode:
authorXisco Fauli <anistenis@gmail.com>2017-03-07 18:37:51 +0100
committerXisco FaulĂ­ <xiscofauli@libreoffice.org>2017-03-07 20:06:13 +0000
commitc10088a535b8a0ef4da2773547423ef169d08743 (patch)
treee9099d719bde9e8270a1dd8aaa89dfccb2b3ed99 /uitest
parentda1f3b1c94af14767a638cc824ec510e889843eb (diff)
tdf#105677: Add uitest
Change-Id: I00365541922785f4f33e762d034e921d5502d5f0 Reviewed-on: https://gerrit.libreoffice.org/34955 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Xisco FaulĂ­ <xiscofauli@libreoffice.org>
Diffstat (limited to 'uitest')
-rw-r--r--uitest/impress_tests/tdf105677.py50
1 files changed, 50 insertions, 0 deletions
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: