Skip to content

Commit 02fe22a

Browse files
nvborisenkodiemol
andauthored
[dotnet] Execute Selenium Manager commands without new window (#12593)
Execute Selenium Manager commands without new window Co-authored-by: Diego Molina <[email protected]>
1 parent 29d06ab commit 02fe22a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

dotnet/src/webdriver/SeleniumManager.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ private static Dictionary<string, object> RunCommand(string fileName, string arg
143143
process.StartInfo.FileName = binaryFullPath;
144144
process.StartInfo.Arguments = arguments;
145145
process.StartInfo.UseShellExecute = false;
146+
process.StartInfo.CreateNoWindow = true;
146147
process.StartInfo.StandardErrorEncoding = Encoding.UTF8;
147148
process.StartInfo.StandardOutputEncoding = Encoding.UTF8;
148149
process.StartInfo.RedirectStandardOutput = true;

0 commit comments

Comments
 (0)