We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9408eeb commit d5ecf61Copy full SHA for d5ecf61
py/selenium/webdriver/remote/server.py
@@ -157,7 +157,7 @@ def start(self):
157
sock.connect((host, self.port))
158
raise ConnectionError(f"Selenium server is already running, or something else is using port {self.port}")
159
except ConnectionRefusedError:
160
- print(f"Starting Selenium server: {self.path}")
+ print(f"Starting Selenium server...")
161
self.process = subprocess.Popen(command, env=self.env)
162
print(f"Selenium server running as process: {self.process.pid}")
163
if not self._wait_for_server():
0 commit comments