Comment 2 for bug 1248620

Revision history for this message
Olivier Tilloy (osomon) wrote :

Until this is properly fixed, I worked around the issue in the test itself by replacing:

    window = self.app.select_single("QQuickWindow")

with:

    windows = self.app.select_many("QQuickWindow")
    window = [w for w in windows if w.visible][0]

Not particularly clean code, but it does the trick…