~mterry/ubuntu-calculator-app/confined

« back to all changes in this revision

Viewing changes to app/tests/autopilot/ubuntu_calculator_app/__init__.py

  • Committer: Tarmac
  • Author(s): Giulio Collura, Giulio Collura
  • Date: 2015-01-03 15:37:06 UTC
  • mfrom: (45.2.8 reboot-scrollable-view)
  • Revision ID: tarmac-20150103153706-c3kk14iqzo55hnnz
Fix CMakeLists when building click packages. ScrollableView to manage history, textentry and keyboard.

Approved by Ubuntu Phone Apps Jenkins Bot, Riccardo Padovani.

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
        self.pointing_device.click_object(button)
87
87
 
88
88
    def get_history(self):
89
 
        history = self.wait_select_single('QQuickListView',
90
 
                                          objectName='formulaView')
 
89
        history = self.wait_select_single('ScrollableView',
 
90
                                          objectName='scrollableView')
91
91
 
92
92
        return CalculationHistory(history)
93
93