diff --git a/umbra/umbra.py b/umbra/umbra.py index 3ea2aa7..33cc2d4 100755 --- a/umbra/umbra.py +++ b/umbra/umbra.py @@ -97,7 +97,7 @@ class Chrome(): sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) while sock.connect_ex(('127.0.0.1',int(self.port))) != 0 and (time.time() - start) < float(self.browser_wait): time.sleep(0.1) - if (time.time() - start) < float(self.browser_wait): + if (time.time() - start) > float(self.browser_wait): raise Exception("Browser appears to have failed to start")