uitest/writer_tests/customizeDialog.py |    2 +-
 vcl/source/uitest/uiobject.cxx         |   13 ++++++++++++-
 2 files changed, 13 insertions(+), 2 deletions(-)

New commits:
commit fc5aeeb8d9d44808d18880f6812075830bb5d11c
Author:     Jan Holesovsky <ke...@collabora.com>
AuthorDate: Fri Oct 16 14:27:27 2020 +0200
Commit:     Andras Timar <andras.ti...@collabora.com>
CommitDate: Sun Nov 15 15:42:17 2020 +0100

    uitest: Rename the "SET" to "TYPE" for Edit boxes + implement the real 
"SET".
    
    To be consistent with the other controls: "TYPE" actually enters the
    characters one by one, while "SET" sets it as a whole.
    
    Also I believe Modify() should be called, not UpdateData()...
    
    Change-Id: I967dc270b1d92fe76107732a511cc3e70d3d65c0
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104435
    Tested-by: Andras Timar <andras.ti...@collabora.com>
    Reviewed-by: Andras Timar <andras.ti...@collabora.com>
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105616
    Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoff...@gmail.com>

diff --git a/uitest/writer_tests/customizeDialog.py 
b/uitest/writer_tests/customizeDialog.py
index 9d2311eb46a6..5812c51e098e 100644
--- a/uitest/writer_tests/customizeDialog.py
+++ b/uitest/writer_tests/customizeDialog.py
@@ -36,7 +36,7 @@ class ConfigureDialog(UITestCase):
         initialEntryCount = get_state_as_dict(xfunc)["Children"]
         self.assertTrue(initialEntryCount is not 0)
 
-        xSearch.executeAction("SET", mkPropertyValues({"TEXT":"format"}))
+        xSearch.executeAction("TYPE", mkPropertyValues({"TEXT":"format"}))
 
         # Wait for the search/filter op to be completed
         time.sleep(1)
diff --git a/vcl/source/uitest/uiobject.cxx b/vcl/source/uitest/uiobject.cxx
index 3d6242697066..818a4513b7f6 100644
--- a/vcl/source/uitest/uiobject.cxx
+++ b/vcl/source/uitest/uiobject.cxx
@@ -710,7 +710,7 @@ void EditUIObject::execute(const OUString& rAction,
         const StringMap& rParameters)
 {
     bool bHandled = true;
-    if (rAction == "SET")
+    if (rAction == "TYPE")
     {
         if (rParameters.find("TEXT") != rParameters.end())
         {
@@ -733,6 +733,17 @@ void EditUIObject::execute(const OUString& rAction,
             bHandled = false;
         }
     }
+    else if (rAction == "SET")
+    {
+        auto it = rParameters.find("TEXT");
+        if (it != rParameters.end())
+        {
+            mxEdit->SetText(it->second);
+            mxEdit->Modify();
+        }
+        else
+            bHandled = false;
+    }
     else if (rAction == "SELECT")
     {
         if (rParameters.find("FROM") != rParameters.end() &&
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to