Would it be possible to add a simple `qtbot.wait()` method to wait for X milliseconds? For example, the following seems to work currently: ``` python def wait(x): from pytestqt.qt_compat import QtTest QtTest.QTest.qWait(x) ```