1 write to Context
Microsoft.AspNetCore.Components.Testing (1)
Infrastructure\TracedContext.cs (1)
37Context = context;
6 references to Context
Microsoft.AspNetCore.Components.Testing (6)
Infrastructure\TracedContext.cs (5)
11/// convenience method and exposes the underlying <see cref="Context"/> property for full API access. 21/// C# does not allow implicit conversions to interfaces, so use <see cref="Context"/> 46internal void Deconstruct(out IBrowserContext context) => context = Context; 52internal Task<IPage> NewPageAsync() => Context.NewPageAsync(); 67await Context.CloseAsync().ConfigureAwait(false);
Playwright\BrowserTest.cs (1)
110return tracedContext.Context;