summaryrefslogtreecommitdiffstats
path: root/uitest/uitest/uihelper/calc.py
blob: e34304c6908221ba707d6696576a4db7b10e481e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# -*- 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 mkPropertyValues
from uitest.uihelper.common import type_text

def enter_text_to_cell(gridwin, cell, text):
    gridwin.executeAction("SELECT", mkPropertyValues({"CELL": cell}))
    type_text(gridwin, text)
    gridwin.executeAction("TYPE", mkPropertyValues({"KEYCODE": "RETURN"}))

# vim: set shiftwidth=4 softtabstop=4 expandtab: