diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2025-03-04 11:56:19 +0100 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2025-03-04 21:08:22 +0100 |
commit | 68722fce71ac5bee808bebb76caf32128d6e9ca0 (patch) | |
tree | 23f1011e2d18bfc44a53b031bf3963a4703b2dff | |
parent | ac5c93bfbefb18130eb0f1371fdacca0909cc16a (diff) |
tdf#158794: sw: Add UItest
Change-Id: I6b7fd51861bd03af993a68d04886bb0c10705e09
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/182471
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Tested-by: Jenkins
-rw-r--r-- | sw/qa/uitest/writer_tests8/tdf158794.py | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/sw/qa/uitest/writer_tests8/tdf158794.py b/sw/qa/uitest/writer_tests8/tdf158794.py new file mode 100644 index 000000000000..fc9a6d36b01c --- /dev/null +++ b/sw/qa/uitest/writer_tests8/tdf158794.py @@ -0,0 +1,37 @@ +# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*- +# +# This file is part of the LibreOffice project. +# +# 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 +from uitest.uihelper.calc import enter_text_to_cell + +class tdf158794(UITestCase): + def test_tdf158794(self): + with self.ui_test.create_doc_in_start_center("calc"): + + xCalcDoc = self.xUITest.getTopFocusWindow() + gridwin = xCalcDoc.getChild("grid_window") + + enter_text_to_cell(gridwin, "A1", "1") + + gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "A1"})) + + self.xUITest.executeCommand(".uno:Copy") + + with self.ui_test.load_empty_file("writer") as document: + + self.xUITest.executeCommand(".uno:InsertFootnote") + + # Paste as DDE link + # Without the fix in place, this test would have crashed here + formatProperty = mkPropertyValues({"SelectedFormat": 59}) + self.xUITest.executeCommandWithParameters(".uno:ClipboardFormatItems", formatProperty) + + self.assertEqual("", document.Footnotes[0].String) + +# vim: set shiftwidth=4 softtabstop=4 expandtab: |