diff options
author | Gabriel Masei <gabriel.masei@1and1.ro> | 2024-04-09 13:07:18 +0300 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2024-10-09 14:49:11 +0200 |
commit | 565b619d57a3b98b0826c4b49dee6606f9ae70e0 (patch) | |
tree | c2fa077a576ce94a2fa5131c19c84bee84faa21d /sc/qa/uitest/textToColumns/tdf85979.py | |
parent | 2f1dcf01d713f786ed1bfdc2ba3b6c9e06fb8ecf (diff) |
tdf#160582 Preserve settings saving in csv import dialog
Also, improve detection algorithm by replacing the limit
of 20 lines with a time limit of 500ms.
Change-Id: Iac519b6ebe675b91ce84b900646d9d320ea9ddc1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165905
Reviewed-by: Andras Timar <andras.timar@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'sc/qa/uitest/textToColumns/tdf85979.py')
-rw-r--r-- | sc/qa/uitest/textToColumns/tdf85979.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sc/qa/uitest/textToColumns/tdf85979.py b/sc/qa/uitest/textToColumns/tdf85979.py index ca5808947e70..a3be674b0d69 100644 --- a/sc/qa/uitest/textToColumns/tdf85979.py +++ b/sc/qa/uitest/textToColumns/tdf85979.py @@ -23,6 +23,9 @@ class tdf85979(UITestCase): gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "C1:C5"})) # Data - Text to Columns with self.ui_test.execute_dialog_through_command(".uno:TextToColumns") as xDialog: + xSeparatedBy = xDialog.getChild("toseparatedby") + xSeparatedBy.executeAction("CLICK", tuple()) + xspace = xDialog.getChild("space") if (get_state_as_dict(xspace)["Selected"]) == "false": xspace.executeAction("CLICK", tuple()) |