diff options
author | Zdeněk Crhonek <zcrhonek@gmail.com> | 2018-06-24 22:56:37 +0200 |
---|---|---|
committer | Zdenek Crhonek <zcrhonek@gmail.com> | 2018-06-26 21:02:39 +0200 |
commit | 8e908ed926354703a00e19669e3f2631ebb05497 (patch) | |
tree | 834816b8ddbee09fc853b819441b9d11b9e25d95 /sc | |
parent | f7aad844aab5fe424afd71b71133c74d473c5030 (diff) |
uitest for bug tdf#97340
Change-Id: I5d8cb62f89e680e6d3cc3ad3ddaa727358b42424
Reviewed-on: https://gerrit.libreoffice.org/56362
Tested-by: Jenkins
Reviewed-by: Zdenek Crhonek <zcrhonek@gmail.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/qa/uitest/autofilter/tdf97340.py | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/sc/qa/uitest/autofilter/tdf97340.py b/sc/qa/uitest/autofilter/tdf97340.py new file mode 100644 index 000000000000..237ed71178ba --- /dev/null +++ b/sc/qa/uitest/autofilter/tdf97340.py @@ -0,0 +1,38 @@ +# -*- 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 uitest.uihelper.common import get_state_as_dict +from uitest.uihelper.common import select_pos +from uitest.uihelper.calc import enter_text_to_cell +from libreoffice.calc.document import get_sheet_from_doc +from libreoffice.calc.conditional_format import get_conditional_format_from_sheet +from uitest.debug import sleep +from libreoffice.calc.document import get_cell_by_position +from libreoffice.uno.propertyvalue import mkPropertyValues +import org.libreoffice.unotest +import pathlib + +def get_url_for_data_file(file_name): + return pathlib.Path(org.libreoffice.unotest.makeCopyFromTDOC(file_name)).as_uri() + +#Bug 97340 - Calc crashes on filtering with select checkbox with space bar + +class tdf97340(UITestCase): + def test_tdf97340_autofilter(self): + calc_doc = self.ui_test.load_file(get_url_for_data_file("autofilter.ods")) + xCalcDoc = self.xUITest.getTopFocusWindow() + gridwin = xCalcDoc.getChild("grid_window") + document = self.ui_test.get_component() + + gridwin.executeAction("LAUNCH", mkPropertyValues({"AUTOFILTER": "", "COL": "0", "ROW": "0"})) + xFloatWindow = self.xUITest.getFloatWindow() + xsearchEdit = xFloatWindow.getChild("search_edit") + xsearchEdit.executeAction("TYPE", mkPropertyValues({"TEXT":" "})) + xsearchEdit.executeAction("TYPE", mkPropertyValues({"KEYCODE": "BACKSPACE"})) + + self.ui_test.close_doc() +# vim: set shiftwidth=4 softtabstop=4 expandtab:
\ No newline at end of file |