@@ -207,17 +207,15 @@ string EnsureFolderExists(string folderPath)
207
207
IgnoreAllDefaultArgs = configuration . GetValue < bool ? > ( nameof ( BrowserTypeLaunchOptions . IgnoreAllDefaultArgs ) ) ,
208
208
SlowMo = configuration . GetValue < int ? > ( nameof ( BrowserTypeLaunchOptions . SlowMo ) ) ,
209
209
Env = configuration . GetValue < Dictionary < string , string > > ( nameof ( BrowserTypeLaunchOptions . Env ) ) ,
210
- DumpIO = configuration . GetValue < bool ? > ( nameof ( BrowserTypeLaunchOptions . DumpIO ) ) ,
211
- IgnoreHTTPSErrors = configuration . GetValue < bool ? > ( nameof ( BrowserTypeLaunchOptions . IgnoreHTTPSErrors ) ) ,
212
210
DownloadsPath = configuration . GetValue < string > ( nameof ( BrowserTypeLaunchOptions . DownloadsPath ) ) ,
213
211
ExecutablePath = configuration . GetValue < string > ( nameof ( BrowserTypeLaunchOptions . ExecutablePath ) ) ,
214
212
Devtools = configuration . GetValue < bool ? > ( nameof ( BrowserTypeLaunchOptions . Devtools ) ) ,
215
213
Args = BindMultiValueMap (
216
- configuration . GetSection ( nameof ( BrowserTypeLaunchOptions . Args ) ) ,
217
- argsMap => argsMap . SelectMany ( argNameValue => argNameValue . Value . Prepend ( argNameValue . Key ) ) . ToArray ( ) ) ,
214
+ configuration . GetSection ( nameof ( BrowserTypeLaunchOptions . Args ) ) ,
215
+ argsMap => argsMap . SelectMany ( argNameValue => argNameValue . Value . Prepend ( argNameValue . Key ) ) . ToArray ( ) ) ,
218
216
Headless = configuration . GetValue < bool ? > ( nameof ( BrowserTypeLaunchOptions . Headless ) ) ,
219
217
Timeout = configuration . GetValue < int ? > ( nameof ( BrowserTypeLaunchOptions . Timeout ) ) ,
220
- Proxy = configuration . GetValue < ProxySettings > ( nameof ( BrowserTypeLaunchOptions . Proxy ) )
218
+ Proxy = configuration . GetValue < Proxy > ( nameof ( BrowserTypeLaunchOptions . Proxy ) )
221
219
} ;
222
220
223
221
private T BindMultiValueMap < T > ( IConfigurationSection processArgsMap , Func < Dictionary < string , HashSet < string > > , T > mapper )
0 commit comments