~bfiller/gallery-app/remove-texture

« back to all changes in this revision

Viewing changes to tests/autopilot/goodhope/emulators/main_window.py

added initial autopilot structure. No actual test yet.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
class MainWindow(object):
 
2
    """An emulator class that makes it easy to interact with the gallery app."""
 
3
 
 
4
    def __init__(self, app):
 
5
        self.app = app
 
6
 
 
7
    def get_qml_view(self):
 
8
        """Get the main QML view"""
 
9
        return self.app.select_single("QQuickView")
 
10