~canonical-platform-qa/ubuntu-system-tests/qemu-build-snap

« back to all changes in this revision

Viewing changes to ubuntu_system_tests/helpers/dialer_app/_cpo.py

  • Committer: Tarmac
  • Author(s): Allan LeSage
  • Date: 2016-11-30 19:25:24 UTC
  • mfrom: (486.1.1 flake8-fresh-fixes)
  • Revision ID: tarmac-20161130192524-vrjgq8lwbqvmgswn
Address uitoolkit merge zesty and vivid flake8 errors.

Approved by platform-qa-bot, Heber Parrucci.

Show diffs side-by-side

added added

removed removed

Lines of Context:
337
337
    def trigger_select_all(self):
338
338
        """Trigger select all"""
339
339
        button = self.get_root_instance().wait_select_single(
340
 
                        'UCAbstractButton',
341
 
                        objectName="select_all_button")
 
340
            'UCAbstractButton',
 
341
            objectName="select_all_button")
342
342
        self._click_button(button)
343
343
 
344
344
    def trigger_copy(self):
345
345
        """Trigger copy"""
346
346
        button = self.get_root_instance().wait_select_single(
347
 
                         'UCAbstractButton',
348
 
                         objectName="copy_button")
 
347
            'UCAbstractButton',
 
348
            objectName="copy_button")
349
349
        self._click_button(button)
350
350
 
351
351
    def trigger_paste(self):
352
352
        """Trigger paste"""
353
353
        button = self.get_root_instance().wait_select_single(
354
 
                          'UCAbstractButton',
355
 
                          objectName="paste_button")
 
354
            'UCAbstractButton',
 
355
            objectName="paste_button")
356
356
        self._click_button(button)
357
357
 
358
358
    def trigger_cut(self):
359
359
        """Trigger cut"""
360
360
        button = self.get_root_instance().wait_select_single(
361
 
                          'UCAbstractButton',
362
 
                          objectName="cut_button")
 
361
            'UCAbstractButton',
 
362
            objectName="cut_button")
363
363
        self._click_button(button)
364
364
 
365
365
    def dial_number(self, number, formattedNumber):