Removed unnecessary calls to wait_timeout

This commit is contained in:
Benjamin Graham 2020-05-27 09:45:12 -04:00 committed by Justin Stephenson
parent 5283e234a1
commit de0b26f1e4

View file

@ -23,7 +23,6 @@ class TestApplication(MachineCase):
b.wait_present("#user") b.wait_present("#user")
b.click(".listing-ct-item") b.click(".listing-ct-item")
b.click("#player-play-pause") b.click("#player-play-pause")
b.wait_timeout(30000)
b.wait_in_text(term_first_line, "localhost") b.wait_in_text(term_first_line, "localhost")
def testFastforwardControls(self): def testFastforwardControls(self):
@ -130,7 +129,6 @@ class TestApplication(MachineCase):
# loop until 3 valid frames have passed # loop until 3 valid frames have passed
while "localhost" not in b.text(term_first_line): while "localhost" not in b.text(term_first_line):
b.click("#player-skip-frame") b.click("#player-skip-frame")
b.wait_timeout(20)
b.wait_in_text(term_first_line, "localhost") b.wait_in_text(term_first_line, "localhost")