~ubuntu-branches/ubuntu/vivid/ubuntu-ui-toolkit-gles/vivid-proposed

« back to all changes in this revision

Viewing changes to tests/autopilot/ubuntuuitoolkit/_custom_proxy_objects/_textarea.py

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, Zoltán Balogh
  • Date: 2014-07-31 17:02:13 UTC
  • mfrom: (1.1.13)
  • Revision ID: package-import@ubuntu.com-20140731170213-h6z5tfnwgzfvns6v
Tags: 0.1.51+14.10.20140731.1-0ubuntu1
[ Zoltán Balogh ]
Sync package with ubuntu-ui-toolkit - 0.1.51+14.10.20140731.1-0ubuntu1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
 
2
#
 
3
# Copyright (C) 2014 Canonical Ltd.
 
4
#
 
5
# This program is free software; you can redistribute it and/or modify
 
6
# it under the terms of the GNU Lesser General Public License as published by
 
7
# the Free Software Foundation; version 3.
 
8
#
 
9
# This program is distributed in the hope that it will be useful,
 
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 
12
# GNU Lesser General Public License for more details.
 
13
#
 
14
# You should have received a copy of the GNU Lesser General Public License
 
15
# along with this program. If not, see <http://www.gnu.org/licenses/>.
 
16
 
 
17
from ubuntuuitoolkit._custom_proxy_objects import _textfield
 
18
 
 
19
 
 
20
class TextArea(_textfield.TextField):
 
21
    """TextArea autopilot emulator."""
 
22
 
 
23
    def clear(self):
 
24
        """Clear the text area."""
 
25
        if not self.is_empty():
 
26
            self._clear_with_keys()
 
27
            self.text.wait_for('')