File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ public async Task ChallengeUser_MicrosoftIdFlow_LocalApp_ValidEmailPasswordCreds
52
52
// Arrange Playwright setup, to see the browser UI set Headless = false.
53
53
const string TraceFileName = TraceFileClassName + "_LoginLogout" ;
54
54
using IPlaywright playwright = await Playwright . CreateAsync ( ) ;
55
- IBrowser browser = await playwright . Chromium . LaunchAsync ( new ( ) { Headless = false } ) ;
55
+ IBrowser browser = await playwright . Chromium . LaunchAsync ( new ( ) { Headless = true } ) ;
56
56
IBrowserContext context = await browser . NewContextAsync ( new BrowserNewContextOptions { IgnoreHTTPSErrors = true } ) ;
57
57
await context . Tracing . StartAsync ( new ( ) { Screenshots = true , Snapshots = true , Sources = true } ) ;
58
58
IPage page = await context . NewPageAsync ( ) ;
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ public async Task B2C_ValidCreds_LoginLogout()
71
71
// Playwright setup. To see browser UI, set 'Headless = false'.
72
72
const string TraceFileName = TraceClassName + "_TodoAppFunctionsCorrectly" ;
73
73
using IPlaywright playwright = await Playwright . CreateAsync ( ) ;
74
- IBrowser browser = await playwright . Chromium . LaunchAsync ( new ( ) { Headless = false } ) ;
74
+ IBrowser browser = await playwright . Chromium . LaunchAsync ( new ( ) { Headless = true } ) ;
75
75
IBrowserContext context = await browser . NewContextAsync ( new BrowserNewContextOptions { IgnoreHTTPSErrors = true } ) ;
76
76
await context . Tracing . StartAsync ( new ( ) { Screenshots = true , Snapshots = true , Sources = true } ) ;
77
77
You can’t perform that action at this time.
0 commit comments