~canonical-platform-qa/lrt/lrt-to-dep8

« back to all changes in this revision

Viewing changes to lrt/gestures.py

  • Committer: Chris Gagnon
  • Date: 2014-09-26 19:59:52 UTC
  • Revision ID: chris.gagnon@canonical.com-20140926195952-7mag7b0eka0h3wql
add system-settings stress test

Show diffs side-by-side

added added

removed removed

Lines of Context:
101
101
    type_password()
102
102
 
103
103
 
 
104
def get_display_size():
 
105
    display = Display.create()
 
106
 
 
107
    return '{}x{}'.format(
 
108
        display.get_screen_width(),
 
109
        display.get_screen_height()
 
110
    )
 
111
 
 
112
 
104
113
def click_random_location():
105
114
    display = Display.create()
106
115