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.
subprocess.TimeoutError
1 parent 6a47cc3 commit 3a843aaCopy full SHA for 3a843aa
1 file changed
py/selenium/webdriver/common/service.py
@@ -169,7 +169,7 @@ def _terminate_process(self) -> None:
169
self.process.terminate()
170
try:
171
self.process.wait(60)
172
- except TimeoutError:
+ except subprocess.TimeoutError:
173
logger.error(
174
"Service process refused to terminate gracefully with SIGTERM, escalating to SIGKILL.",
175
exc_info=True,
0 commit comments