diff options
-rw-r--r-- | uitest/math_tests/start.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/uitest/math_tests/start.py b/uitest/math_tests/start.py index 39b3111a8696..5b11ae768e79 100644 --- a/uitest/math_tests/start.py +++ b/uitest/math_tests/start.py @@ -50,4 +50,16 @@ class SimpleMathTest(UITestCase): self.ui_test.close_doc() + def test_math_selector(self): + self.ui_test.create_doc_in_start_center("math") + + xMathDoc = self.xUITest.getTopFocusWindow() + + xMathSelector = xMathDoc.getChild("element_selector") + + xElement = xMathSelector.getChild("1") + xElement.executeAction("SELECT", tuple()) + + self.ui_test.close_doc() + # vim:set shiftwidth=4 softtabstop=4 expandtab: */ |