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 ca7b02a commit 741de1dCopy full SHA for 741de1d
src/Playwright/Program.cs
@@ -52,6 +52,9 @@ public int Run(string[] args)
52
var playwrightStartInfo = new ProcessStartInfo(pwPath, allArgs)
53
{
54
UseShellExecute = false,
55
+ // This works after net8.0-preview-4
56
+ // https://github.com/dotnet/runtime/pull/82662
57
+ WindowStyle = ProcessWindowStyle.Hidden,
58
};
59
foreach (var pair in Driver.GetEnvironmentVariables())
60
0 commit comments