File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 25
25
using System ;
26
26
using System . Collections . Generic ;
27
27
using System . Globalization ;
28
+ using System . Text . Json ;
29
+ using System . Text . Json . Serialization ;
28
30
using System . Threading . Tasks ;
29
31
using Microsoft . Playwright . TestAdapter ;
30
32
@@ -70,7 +72,8 @@ private static async Task<IBrowser> CreateBrowser(IBrowserType browserType)
70
72
ExposeNetwork = exposeNetwork ,
71
73
Headers = new Dictionary < string , string >
72
74
{
73
- [ "Authorization" ] = $ "Bearer { accessToken } "
75
+ [ "Authorization" ] = $ "Bearer { accessToken } ",
76
+ [ "x-playwright-launch-options" ] = JsonSerializer . Serialize ( PlaywrightSettingsProvider . LaunchOptions , new JsonSerializerOptions ( ) { DefaultIgnoreCondition = JsonIgnoreCondition . WhenWritingNull } )
74
77
}
75
78
} ;
76
79
Original file line number Diff line number Diff line change 25
25
using System ;
26
26
using System . Collections . Generic ;
27
27
using System . Globalization ;
28
+ using System . Text . Json ;
29
+ using System . Text . Json . Serialization ;
28
30
using System . Threading . Tasks ;
29
31
using Microsoft . Playwright . TestAdapter ;
30
32
@@ -65,7 +67,8 @@ private static async Task<IBrowser> CreateBrowser(IBrowserType browserType)
65
67
ExposeNetwork = exposeNetwork ,
66
68
Headers = new Dictionary < string , string >
67
69
{
68
- [ "Authorization" ] = $ "Bearer { accessToken } "
70
+ [ "Authorization" ] = $ "Bearer { accessToken } ",
71
+ [ "x-playwright-launch-options" ] = JsonSerializer . Serialize ( PlaywrightSettingsProvider . LaunchOptions , new JsonSerializerOptions ( ) { DefaultIgnoreCondition = JsonIgnoreCondition . WhenWritingNull } )
69
72
}
70
73
} ;
71
74
You can’t perform that action at this time.
0 commit comments