diff options
author | Khaled Hosny <khaled@libreoffice.org> | 2023-09-12 16:41:37 +0300 |
---|---|---|
committer | خالد حسني <khaled@libreoffice.org> | 2023-09-13 12:54:14 +0200 |
commit | e9cc014be4150a5adc9950f366c9bdfa50420dcf (patch) | |
tree | 6c1ae1583321fcc6aa7b7662111e88528a8c7546 /uitest/math_tests | |
parent | 5f3031b33a16cf11045006616b01dd89d6d59a32 (diff) |
starmath: Hide editing window by default and add a menu item to show
We are enabling inline editing bu default, so this window is of no
interest by default.
Change-Id: I66fe988790fe4f174f6cb4f691af69888b0b05b5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156852
Tested-by: Jenkins
Reviewed-by: خالد حسني <khaled@libreoffice.org>
Diffstat (limited to 'uitest/math_tests')
-rw-r--r-- | uitest/math_tests/start.py | 6 | ||||
-rw-r--r-- | uitest/math_tests/tdf128610.py | 2 | ||||
-rw-r--r-- | uitest/math_tests/tdf147755.py | 2 |
3 files changed, 10 insertions, 0 deletions
diff --git a/uitest/math_tests/start.py b/uitest/math_tests/start.py index 7504387a16f7..0d085374f6b4 100644 --- a/uitest/math_tests/start.py +++ b/uitest/math_tests/start.py @@ -19,6 +19,7 @@ class SimpleMathTest(UITestCase): def test_math_unoCommand(self): with self.ui_test.create_doc_in_start_center("math"): + self.xUITest.executeCommand(".uno:CommandWindow") xMathDoc = self.xUITest.getTopFocusWindow() # tdf#140386 @@ -27,10 +28,12 @@ class SimpleMathTest(UITestCase): xEditView = xMathDoc.getChild("editview") self.assertEqual("backepsilon", get_state_as_dict(xEditView)["Text"]) + self.xUITest.executeCommand(".uno:CommandWindow") def test_math_edit(self): with self.ui_test.create_doc_in_start_center("math"): + self.xUITest.executeCommand(".uno:CommandWindow") xMathDoc = self.xUITest.getTopFocusWindow() xEditView = xMathDoc.getChild("editview") @@ -38,10 +41,12 @@ class SimpleMathTest(UITestCase): type_text(xEditView, "E=mc^2") self.assertEqual("E=mc^2", get_state_as_dict(xEditView)["Text"]) + self.xUITest.executeCommand(".uno:CommandWindow") def test_complete_math(self): with self.ui_test.create_doc_in_start_center("math"): + self.xUITest.executeCommand(".uno:CommandWindow") xMathDoc = self.xUITest.getTopFocusWindow() xList = xMathDoc.getChild("categorylist") @@ -63,5 +68,6 @@ class SimpleMathTest(UITestCase): type_text(xEditView, "2") self.assertEqual("{ 1 <> 2 }", get_state_as_dict(xEditView)["Text"]) + self.xUITest.executeCommand(".uno:CommandWindow") # vim: set shiftwidth=4 softtabstop=4 expandtab: diff --git a/uitest/math_tests/tdf128610.py b/uitest/math_tests/tdf128610.py index 29b7d5ac4564..efb008f7bb45 100644 --- a/uitest/math_tests/tdf128610.py +++ b/uitest/math_tests/tdf128610.py @@ -20,6 +20,7 @@ class Tdf128610(UITestCase): with self.ui_test.load_empty_file("math"): + self.xUITest.executeCommand(".uno:CommandWindow") self.xUITest.executeCommand('.uno:ImportMathMLClipboard') xMathDoc = self.xUITest.getTopFocusWindow() @@ -28,5 +29,6 @@ class Tdf128610(UITestCase): # Without the fix in place, this test would have failed with # AssertionError: '{ f _ c = frac { 1 } { K _ m } }' != '' self.assertEqual("{ f _ c = { frac { 1 } { K _ m } } }", get_state_as_dict(xEditView)["Text"]) + self.xUITest.executeCommand(".uno:CommandWindow") # vim: set shiftwidth=4 softtabstop=4 expandtab: diff --git a/uitest/math_tests/tdf147755.py b/uitest/math_tests/tdf147755.py index 755efbe6b51d..a53e255092d6 100644 --- a/uitest/math_tests/tdf147755.py +++ b/uitest/math_tests/tdf147755.py @@ -22,11 +22,13 @@ class Tdf147755(UITestCase): xOk = xDialog.getChild("ok") xOk.executeAction("CLICK", tuple()) + self.xUITest.executeCommand(".uno:CommandWindow") xMathDoc = self.xUITest.getTopFocusWindow() xEditView = xMathDoc.getChild("editview") # Without the fix in place, this test would have failed with # AssertionError: '%ALPHA' != '' self.assertEqual("%ALPHA", get_state_as_dict(xEditView)["Text"]) + self.xUITest.executeCommand(".uno:CommandWindow") # vim: set shiftwidth=4 softtabstop=4 expandtab: |