Skip to content

Commit 9c725ca

Browse files
authored
feat(roll): roll Playwright to 1.43.0-beta-1712646596000 (#2905)
1 parent 6e04b94 commit 9c725ca

File tree

5 files changed

+122
-2
lines changed

5 files changed

+122
-2
lines changed

src/Common/Version.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<AssemblyVersion>1.42.0</AssemblyVersion>
44
<PackageVersion>$(AssemblyVersion)</PackageVersion>
5-
<DriverVersion>1.43.0</DriverVersion>
5+
<DriverVersion>1.43.0-beta-1712646596000</DriverVersion>
66
<ReleaseVersion>$(AssemblyVersion)</ReleaseVersion>
77
<FileVersion>$(AssemblyVersion)</FileVersion>
88
<NoDefaultExcludes>true</NoDefaultExcludes>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
/*
2+
* MIT License
3+
*
4+
* Copyright (c) Microsoft Corporation.
5+
*
6+
* Permission is hereby granted, free of charge, to any person obtaining a copy
7+
* of this software and associated documentation files (the "Software"), to deal
8+
* in the Software without restriction, including without limitation the rights
9+
* to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
10+
* copies of the Software, and to permit persons to whom the Software is
11+
* furnished to do so, subject to the following conditions:
12+
*
13+
* The above copyright notice and this permission notice shall be included in all
14+
* copies or substantial portions of the Software.
15+
*
16+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22+
* SOFTWARE.
23+
*/
24+
25+
namespace Microsoft.Playwright.Tests.Firefox;
26+
27+
public class ChromiumLauncherTests : PlaywrightTestEx
28+
{
29+
[PlaywrightTest("chromium/launcher.spec.ts", "should return background pages")]
30+
[Skip(SkipAttribute.Targets.Webkit, SkipAttribute.Targets.Firefox)]
31+
public async Task ShouldReturnBackgroundPages()
32+
{
33+
using var userDataDir = new TempDirectory();
34+
var extensionPath = TestUtils.GetAsset("simple-extension");
35+
var extensionOptions = new BrowserTypeLaunchPersistentContextOptions
36+
{
37+
Headless = false,
38+
Args = new[] {
39+
$"--disable-extensions-except={extensionPath}",
40+
$"--load-extension={extensionPath}",
41+
},
42+
};
43+
var context = await BrowserType.LaunchPersistentContextAsync(userDataDir.Path, extensionOptions);
44+
var backgroundPages = context.BackgroundPages;
45+
var backgroundPage = backgroundPages.Count > 0
46+
? backgroundPages[0]
47+
: await WaitForBackgroundPage(context);
48+
Assert.NotNull(backgroundPage);
49+
Assert.Contains(backgroundPage, context.BackgroundPages.ToList());
50+
Assert.False(context.Pages.Contains(backgroundPage));
51+
await context.CloseAsync();
52+
Assert.IsEmpty(context.Pages);
53+
Assert.IsEmpty(context.BackgroundPages);
54+
}
55+
56+
[PlaywrightTest("chromium/launcher.spec.ts", "should return background pages when recording video")]
57+
[Skip(SkipAttribute.Targets.Webkit, SkipAttribute.Targets.Firefox)]
58+
public async Task ShouldReturnBackgroundPagesWhenRecordingVideo()
59+
{
60+
using var tempDirectory = new TempDirectory();
61+
using var userDataDir = new TempDirectory();
62+
var extensionPath = TestUtils.GetAsset("simple-extension");
63+
var extensionOptions = new BrowserTypeLaunchPersistentContextOptions
64+
{
65+
Headless = false,
66+
Args = new[] {
67+
$"--disable-extensions-except={extensionPath}",
68+
$"--load-extension={extensionPath}",
69+
},
70+
RecordVideoDir = tempDirectory.Path,
71+
};
72+
var context = await BrowserType.LaunchPersistentContextAsync(userDataDir.Path, extensionOptions);
73+
var backgroundPages = context.BackgroundPages;
74+
75+
var backgroundPage = backgroundPages.Count > 0
76+
? backgroundPages[0]
77+
: await WaitForBackgroundPage(context);
78+
Assert.NotNull(backgroundPage);
79+
Assert.Contains(backgroundPage, context.BackgroundPages.ToList());
80+
Assert.False(context.Pages.Contains(backgroundPage));
81+
await context.CloseAsync();
82+
}
83+
84+
private async Task<IPage> WaitForBackgroundPage(IBrowserContext context)
85+
{
86+
var tsc = new TaskCompletionSource<IPage>();
87+
context.BackgroundPage += (_, e) => tsc.TrySetResult(e);
88+
return await tsc.Task;
89+
}
90+
}

src/Playwright/API/Generated/IBrowserContext.cs

+17
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,19 @@ namespace Microsoft.Playwright;
5555
/// </summary>
5656
public partial interface IBrowserContext
5757
{
58+
/// <summary>
59+
/// <para>Emitted when new background page is created in the context.</para>
60+
/// <code>
61+
/// context.BackgroundPage += (_, backgroundPage) =&gt;<br/>
62+
/// {<br/>
63+
/// Console.WriteLine(backgroundPage.Url);<br/>
64+
/// };<br/>
65+
///
66+
/// </code>
67+
/// </summary>
68+
/// <remarks><para>Only works with Chromium browser's persistent context.</para></remarks>
69+
event EventHandler<IPage> BackgroundPage;
70+
5871
/// <summary>
5972
/// <para>
6073
/// Emitted when Browser context gets closed. This might happen because of one of the
@@ -239,6 +252,10 @@ public partial interface IBrowserContext
239252
/// <param name="scriptPath">Instead of specifying <paramref name="script"/>, gives the file name to load from.</param>
240253
Task AddInitScriptAsync(string? script = default, string? scriptPath = default);
241254

255+
/// <summary><para>All existing background pages in the context.</para></summary>
256+
/// <remarks><para>Background pages are only supported on Chromium-based browsers.</para></remarks>
257+
IReadOnlyList<IPage> BackgroundPages { get; }
258+
242259
/// <summary>
243260
/// <para>
244261
/// Returns the browser instance of the context. If it was launched as a persistent

src/Playwright/Core/BrowserContext.cs

+12
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ internal class BrowserContext : ChannelOwner, IBrowserContext
4444
private readonly Dictionary<string, Delegate> _bindings = new();
4545
private readonly BrowserContextInitializer _initializer;
4646
private readonly Tracing _tracing;
47+
internal readonly HashSet<IPage> _backgroundPages = new();
4748
internal readonly IAPIRequestContext _request;
4849
private readonly Dictionary<string, HarRecorder> _harRecorders = new();
4950
internal readonly List<IWorker> _serviceWorkers = new();
@@ -93,6 +94,8 @@ public event EventHandler<IDialog> Dialog
9394

9495
public event EventHandler<IPage> Page;
9596

97+
public event EventHandler<IPage> BackgroundPage;
98+
9699
public event EventHandler<IWebError> WebError;
97100

98101
public event EventHandler<IRequest> Request
@@ -143,13 +146,22 @@ public ITracing Tracing
143146

144147
public IReadOnlyList<IWorker> ServiceWorkers => _serviceWorkers;
145148

149+
public IReadOnlyList<IPage> BackgroundPages => _backgroundPages.ToList();
150+
146151
internal override void OnMessage(string method, JsonElement? serverParams)
147152
{
148153
switch (method)
149154
{
150155
case "close":
151156
OnClose();
152157
break;
158+
case "backgroundPage":
159+
{
160+
var page = serverParams?.GetProperty("page").ToObject<Page>(_connection.DefaultJsonSerializerOptions);
161+
_backgroundPages.Add(page);
162+
BackgroundPage?.Invoke(this, page);
163+
break;
164+
}
153165
case "bindingCall":
154166
Channel_BindingCall(
155167
serverParams?.GetProperty("binding").ToObject<BindingCall>(_connection.DefaultJsonSerializerOptions));

src/Playwright/Core/Page.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1275,7 +1275,8 @@ private async Task UpdateInterceptionAsync()
12751275
internal void OnClose()
12761276
{
12771277
IsClosed = true;
1278-
Context?._pages.Remove(this);
1278+
Context._pages.Remove(this);
1279+
Context._backgroundPages.Remove(this);
12791280
DisposeHarRouters();
12801281
Close?.Invoke(this, this);
12811282
}

0 commit comments

Comments
 (0)