Skip to content

Commit 88a62f3

Browse files
authored
fix(browserType): fix env property serialization (#1074)
closes #1072
1 parent 5dfec1e commit 88a62f3

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

src/PlaywrightSharp.Tests/BrowserTypeLaunchTests.cs

+16
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using System;
2+
using System.Collections.Generic;
23
using System.IO;
34
using System.Linq;
45
using System.Threading.Tasks;
@@ -155,5 +156,20 @@ public async Task ShouldBeCallableTwice()
155156
await TaskUtils.WhenAll(browser.CloseAsync(), browser.CloseAsync());
156157
await browser.CloseAsync();
157158
}
159+
160+
/// <summary>
161+
/// PuppeteerSharp test. It's not in upstream
162+
/// </summary>
163+
[Fact(Timeout = PlaywrightSharp.Playwright.DefaultTimeout)]
164+
public async Task ShouldWorkWithEnvironmentVariables()
165+
{
166+
var options = TestConstants.GetDefaultBrowserOptions();
167+
options.Env = new Dictionary<string, string>
168+
{
169+
["Foo"] = "Var"
170+
};
171+
172+
await using var browser = await BrowserType.LaunchAsync(options);
173+
}
158174
}
159175
}

src/PlaywrightSharp/LaunchOptions.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using System;
22
using System.Collections.Generic;
3+
using System.Linq;
34

45
namespace PlaywrightSharp
56
{
@@ -195,7 +196,7 @@ internal virtual Dictionary<string, object> ToChannelDictionary()
195196

196197
if (Env != null)
197198
{
198-
args["env"] = Env;
199+
args["env"] = Env.Select(kv => new NameValueEntry(kv.Key, kv.Value));
199200
}
200201

201202
if (FirefoxUserPrefs != null)

0 commit comments

Comments
 (0)