Skip to content

Commit 7e259cf

Browse files
committed
Fixing missed redirection of stdout and stderr for .NET Firefox.
1 parent bbf9df7 commit 7e259cf

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

dotnet/src/webdriver/Firefox/FirefoxBinary.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,6 @@ public void StartProfile(FirefoxProfile profile, params string[] commandLineArgu
163163
builder.StartInfo.FileName = this.BinaryExecutable.ExecutablePath;
164164
builder.StartInfo.Arguments = commandLineArgs.ToString();
165165
builder.StartInfo.UseShellExecute = false;
166-
builder.StartInfo.RedirectStandardError = true;
167-
builder.StartInfo.RedirectStandardOutput = true;
168166

169167
foreach (string environmentVar in this.extraEnv.Keys)
170168
{

0 commit comments

Comments
 (0)