We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f49c500 commit 96b4d60Copy full SHA for 96b4d60
py/selenium/webdriver/remote/server.py
@@ -127,7 +127,7 @@ def start(self):
127
self.process = subprocess.Popen(command, env=self.env)
128
print(f"Selenium server running as process: {self.process.pid}")
129
if not self._wait_for_server():
130
- f"Timed out waiting for Selenium server at {self.status_url}"
+ raise ConnectionError(f"Timed out waiting for Selenium server at {self.status_url}")
131
print("Selenium server is ready")
132
return self.process
133
0 commit comments