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 bd3e7a7 commit d1f4f50Copy full SHA for d1f4f50
py/selenium/webdriver/common/service.py
@@ -71,7 +71,9 @@ def start(self):
71
cmd.extend(self.command_line_args())
72
self.process = subprocess.Popen(cmd, env=self.env,
73
close_fds=platform.system() != 'Windows',
74
- stdout=self.log_file, stderr=self.log_file)
+ stdout=self.log_file,
75
+ stderr=self.log_file,
76
+ stdin=PIPE)
77
except TypeError:
78
raise
79
except OSError as err:
0 commit comments