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.
pid
1 parent b8aa903 commit 9a9fd49Copy full SHA for 9a9fd49
py/selenium/webdriver/common/service.py
@@ -90,7 +90,7 @@ def start(self) -> None:
90
try:
91
cmd = [self.path]
92
cmd.extend(self.command_line_args())
93
- self.process = subprocess.Popen(
+ child_process = self.process = subprocess.Popen(
94
cmd,
95
env=self.env,
96
close_fds=system() != "Windows",
@@ -99,6 +99,7 @@ def start(self) -> None:
99
stdin=PIPE,
100
creationflags=self.creation_flags,
101
)
102
+ log.debug(f"Started executable: `{self.process}` in a child process with pid: {child_process.pid}")
103
except TypeError:
104
raise
105
except OSError as err:
0 commit comments