From b2738e654833bb1132cab0831706e97d65f685f6 Mon Sep 17 00:00:00 2001 From: Justin Stephenson Date: Tue, 9 May 2023 11:27:26 -0400 Subject: [PATCH] Play after rewind in testFastforwardControls --- test/check-application | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/check-application b/test/check-application index deaf57c..05abd88 100755 --- a/test/check-application +++ b/test/check-application @@ -82,8 +82,10 @@ class TestApplication(testlib.MachineCase): b.wait_attr(progress, "style", "width: 100%;") # test restart playback b.click("#player-restart") + b.click("#player-play-pause") b.wait_text(self._term_line(7), "thisisatest123") - b.wait_attr(progress, "style", "width: 100%;") + with b.wait_timeout(100): + b.wait_attr(progress, "style", "width: 100%;") def testSpeedControls(self): b, _ = self._login()