summaryrefslogtreecommitdiff
path: root/uitest
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-03-18 01:57:12 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-03-18 02:04:24 +0100
commit58323be71c721e7eb4029c255e42be7061b61d73 (patch)
treed686810b1933e76113a095d6ba33cc82a24f9f84 /uitest
parentc16a4380fe6bdf6782ef706f4f92d904e0413820 (diff)
uitest: add method to simplify sending CTRL+A
Change-Id: I708cc0fdb416d3347e9e5c531d7720c902ec0a86
Diffstat (limited to 'uitest')
-rw-r--r--uitest/uitest/uihelper/keyboard.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/uitest/uitest/uihelper/keyboard.py b/uitest/uitest/uihelper/keyboard.py
new file mode 100644
index 000000000000..f2d8890afed0
--- /dev/null
+++ b/uitest/uitest/uihelper/keyboard.py
@@ -0,0 +1,13 @@
+# -*- 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 libreoffice.uno.propertyvalue import convert_property_values_to_dict, mkPropertyValues
+
+def select_all(ui_object):
+ ui_object.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+A"}))
+
+# vim: set shiftwidth=4 softtabstop=4 expandtab: