[Libreoffice-commits] core.git: sc/qa
Caolán McNamara (via logerrit)
logerrit at kemper.freedesktop.org
Wed Jan 1 12:19:36 UTC 2020
sc/qa/uitest/calc_dialogs/openDialogs.py | 3 ++-
sc/qa/uitest/calc_tests2/dataform.py | 27 +++++++++++++++++++++++++++
2 files changed, 29 insertions(+), 1 deletion(-)
New commits:
commit f0fc4ac88d0d82ee81e0a55bdc54421f955705f0
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Tue Dec 31 19:49:41 2019 +0000
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Wed Jan 1 13:19:05 2020 +0100
explicit uitest for uno:DataForm
Change-Id: I795ec97e663708fa36feae8f537e2138dfd77547
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86052
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
Tested-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/sc/qa/uitest/calc_dialogs/openDialogs.py b/sc/qa/uitest/calc_dialogs/openDialogs.py
index 94a7ca916c14..7d38ba004da1 100644
--- a/sc/qa/uitest/calc_dialogs/openDialogs.py
+++ b/sc/qa/uitest/calc_dialogs/openDialogs.py
@@ -103,7 +103,8 @@ dialogs = [
# tested in sc/qa/uitest/validity/validity.py
# {"command": ".uno:DataSubTotals", "closeButton": "cancel"},
# tested in sc/qa/uitest/calc_tests2/subtotals.py
- {"command": ".uno:DataForm", "closeButton": "close"},
+ # {"command": ".uno:DataForm", "closeButton": "close"},
+ # tested in sc/qa/uitest/calc_tests2/dataform.py
# {"command": ".uno:DataConsolidate", "closeButton": "cancel"},
# tested in sc/qa/uitest/calc_tests2/consolidate.py
{"command": ".uno:Group", "closeButton": "cancel"},
diff --git a/sc/qa/uitest/calc_tests2/dataform.py b/sc/qa/uitest/calc_tests2/dataform.py
new file mode 100644
index 000000000000..0ffe0e70d2c1
--- /dev/null
+++ b/sc/qa/uitest/calc_tests2/dataform.py
@@ -0,0 +1,27 @@
+# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
+#
+# 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 libreoffice.uno.propertyvalue import mkPropertyValues
+import org.libreoffice.unotest
+
+#dataformdialog.ui
+class dataform(UITestCase):
+ def test_dataform(self):
+ calc_doc = self.ui_test.create_doc_in_start_center("calc")
+
+ xCalcDoc = self.xUITest.getTopFocusWindow()
+ gridwin = xCalcDoc.getChild("grid_window")
+ gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "A1:A10"}))
+
+ self.ui_test.execute_dialog_through_command(".uno:DataForm")
+ xDialog = self.xUITest.getTopFocusWindow()
+
+ xCloseBtn = xDialog.getChild("close")
+ self.ui_test.close_dialog_through_button(xCloseBtn)
+ self.ui_test.close_doc()
+
+# vim: set shiftwidth=4 softtabstop=4 expandtab:
More information about the Libreoffice-commits
mailing list