Skip to content

Commit 7d879cd

Browse files
committed
chore(roll): roll Playwright to v1.50
1 parent 0586b06 commit 7d879cd

17 files changed

+295
-59
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
| | Linux | macOS | Windows |
55
| :--- | :---: | :---: | :---: |
6-
| Chromium <!-- GEN:chromium-version -->131.0.6778.33<!-- GEN:stop --> ||||
6+
| Chromium <!-- GEN:chromium-version -->133.0.6943.16<!-- GEN:stop --> ||||
77
| WebKit <!-- GEN:webkit-version -->18.2<!-- GEN:stop --> ||||
8-
| Firefox <!-- GEN:firefox-version -->132.0<!-- GEN:stop --> ||||
8+
| Firefox <!-- GEN:firefox-version -->134.0<!-- GEN:stop --> ||||
99

1010
Playwright for .NET is the official language port of [Playwright](https://playwright.dev), the library to automate [Chromium](https://www.chromium.org/Home), [Firefox](https://www.mozilla.org/en-US/firefox/new/) and [WebKit](https://webkit.org/) with a single API. Playwright is built to enable cross-browser web automation that is **ever-green**, **capable**, **reliable** and **fast**.
1111

src/Common/Version.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<AssemblyVersion>1.50.0</AssemblyVersion>
44
<PackageVersion>$(AssemblyVersion)-beta-2</PackageVersion>
5-
<DriverVersion>1.49.0</DriverVersion>
5+
<DriverVersion>1.50.0-beta-1737762224000</DriverVersion>
66
<ReleaseVersion>$(AssemblyVersion)</ReleaseVersion>
77
<FileVersion>$(AssemblyVersion)</FileVersion>
88
<NoDefaultExcludes>true</NoDefaultExcludes>

src/Playwright.Tests/Assertions/LocatorAssertionsTests.cs

+63
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,32 @@ public async Task ShouldSupportToBeChecked()
4747
StringAssert.Contains("LocatorAssertions.ToBeCheckedAsync with timeout 300ms", exception.Message);
4848
}
4949

50+
[PlaywrightTest("tests/page/expect-boolean.spec.ts", "with indeterminate:true")]
51+
public async Task WithIndeterminateTrue()
52+
{
53+
await Page.SetContentAsync("<input type=checkbox></input>");
54+
await Page.Locator("input").EvaluateAsync("e => e.indeterminate = true");
55+
await Expect(Page.Locator("input")).ToBeCheckedAsync(new() { Indeterminate = true });
56+
}
57+
58+
[PlaywrightTest("tests/page/expect-boolean.spec.ts", "with indeterminate:true and checked")]
59+
public async Task WithIndeterminateTrueAndChecked()
60+
{
61+
await Page.SetContentAsync("<input type=checkbox></input>");
62+
await Page.Locator("input").EvaluateAsync("e => e.indeterminate = true");
63+
var exception = await PlaywrightAssert.ThrowsAsync<PlaywrightException>(() => Expect(Page.Locator("input")).ToBeCheckedAsync(new() { Indeterminate = true, Checked = false }));
64+
StringAssert.Contains("Can't assert indeterminate and checked at the same time", exception.Message);
65+
}
66+
67+
[PlaywrightTest("tests/page/expect-boolean.spec.ts", "fail with indeterminate: true")]
68+
public async Task FailWithIndeterminateTrue()
69+
{
70+
await Page.SetContentAsync("<input type=checkbox></input>");
71+
var locator = Page.Locator("input");
72+
var exception = await PlaywrightAssert.ThrowsAsync<PlaywrightException>(() => Expect(locator).ToBeCheckedAsync(new() { Indeterminate = true, Timeout = 1000 }));
73+
StringAssert.Contains("LocatorAssertions.ToBeCheckedAsync with timeout 1000ms", exception.Message);
74+
}
75+
5076
[PlaywrightTest("playwright-test/playwright.expect.spec.ts", "should be able to set default timeout")]
5177
public async Task ShouldBeAbleToSetDefaultTimeout()
5278
{
@@ -720,6 +746,43 @@ public async Task ToHaveAccessibleDescription()
720746
await Expect(Page.Locator("div")).ToHaveAccessibleDescriptionAsync(new Regex("hello"), new() { IgnoreCase = true });
721747
}
722748

749+
[PlaywrightTest("page/expect-misc.spec.ts", "toHaveAccessibleErrorMessage")]
750+
public async Task ToHaveAccessibleErrorMessage()
751+
{
752+
await Page.SetContentAsync(@"
753+
<form>
754+
<input role=""textbox"" aria-invalid=""true"" aria-errormessage=""error-message"" />
755+
<div id=""error-message"">Hello</div>
756+
<div id=""irrelevant-error"">This should not be considered.</div>
757+
</form>");
758+
var locator = Page.Locator("input[role=\"textbox\"]");
759+
await Expect(locator).ToHaveAccessibleErrorMessageAsync("Hello");
760+
await Expect(locator).Not.ToHaveAccessibleErrorMessageAsync("hello");
761+
await Expect(locator).ToHaveAccessibleErrorMessageAsync("hello", new() { IgnoreCase = true });
762+
await Expect(locator).ToHaveAccessibleErrorMessageAsync(new Regex(@"ell\w"));
763+
await Expect(locator).Not.ToHaveAccessibleErrorMessageAsync(new Regex("hello"));
764+
await Expect(locator).ToHaveAccessibleErrorMessageAsync(new Regex("hello"), new() { IgnoreCase = true });
765+
await Expect(locator).Not.ToHaveAccessibleErrorMessageAsync("This should not be considered.");
766+
}
767+
768+
769+
[PlaywrightTest("page/expect-misc.spec.ts", "toHaveAccessibleErrorMessage should handle multiple aria-errormessage reference")]
770+
public async Task ToHaveAccessibleErrorMessageShouldHandleMultipleAriaErrormessageReference()
771+
{
772+
await Page.SetContentAsync(@"
773+
<form>
774+
<input role=""textbox"" aria-invalid=""true"" aria-errormessage=""error1 error2"" />
775+
<div id=""error1"">First error message.</div>
776+
<div id=""error2"">Second error message.</div>
777+
<div id=""irrelevant-error"">This should not be considered.</div>
778+
</form>");
779+
var locator = Page.Locator("input[role=\"textbox\"]");
780+
await Expect(locator).ToHaveAccessibleErrorMessageAsync("First error message. Second error message.");
781+
await Expect(locator).ToHaveAccessibleErrorMessageAsync(new Regex("first error message.", RegexOptions.IgnoreCase));
782+
await Expect(locator).ToHaveAccessibleErrorMessageAsync(new Regex("second error message.", RegexOptions.IgnoreCase));
783+
await Expect(locator).Not.ToHaveAccessibleErrorMessageAsync(new Regex("This should not be considered.", RegexOptions.IgnoreCase));
784+
}
785+
723786
[PlaywrightTest("page/expect-misc.spec.ts", "toHaveRole")]
724787
public async Task ToHaveRole()
725788
{

src/Playwright/API/Generated/IBrowser.cs

+8-6
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,10 @@ public partial interface IBrowser
7373
/// browser and disconnects from the browser server.
7474
/// </para>
7575
/// <para>
76-
/// This is similar to force quitting the browser. Therefore, you should call <see cref="IBrowserContext.CloseAsync"/>
77-
/// on any <see cref="IBrowserContext"/>'s you explicitly created earlier with <see
78-
/// cref="IBrowser.NewContextAsync"/> **before** calling <see cref="IBrowser.CloseAsync"/>.
76+
/// This is similar to force-quitting the browser. To close pages gracefully and ensure
77+
/// you receive page close events, call <see cref="IBrowserContext.CloseAsync"/> on
78+
/// any <see cref="IBrowserContext"/> instances you explicitly created earlier using
79+
/// <see cref="IBrowser.NewContextAsync"/> **before** calling <see cref="IBrowser.CloseAsync"/>.
7980
/// </para>
8081
/// <para>
8182
/// The <see cref="IBrowser"/> object itself is considered to be disposed and cannot
@@ -84,9 +85,10 @@ public partial interface IBrowser
8485
/// </summary>
8586
/// <remarks>
8687
/// <para>
87-
/// This is similar to force quitting the browser. Therefore, you should call <see cref="IBrowserContext.CloseAsync"/>
88-
/// on any <see cref="IBrowserContext"/>'s you explicitly created earlier with <see
89-
/// cref="IBrowser.NewContextAsync"/> **before** calling <see cref="IBrowser.CloseAsync"/>.
88+
/// This is similar to force-quitting the browser. To close pages gracefully and ensure
89+
/// you receive page close events, call <see cref="IBrowserContext.CloseAsync"/> on
90+
/// any <see cref="IBrowserContext"/> instances you explicitly created earlier using
91+
/// <see cref="IBrowser.NewContextAsync"/> **before** calling <see cref="IBrowser.CloseAsync"/>.
9092
///
9193
/// </para>
9294
/// </remarks>

src/Playwright/API/Generated/IBrowserContext.cs

+5-4
Original file line numberDiff line numberDiff line change
@@ -436,11 +436,12 @@ public partial interface IBrowserContext
436436
/// </para>
437437
/// </summary>
438438
/// <param name="permissions">
439-
/// A permission or an array of permissions to grant. Permissions can be one of the
440-
/// following values:
439+
/// A list of permissions to grant.
440+
/// Supported permissions differ between browsers, and even between different versions
441+
/// of the same browser. Any permission may stop working after an update.
442+
/// Here are some permissions that may be supported by some browsers:
441443
/// <list type="bullet">
442444
/// <item><description><c>'accelerometer'</c></description></item>
443-
/// <item><description><c>'accessibility-events'</c></description></item>
444445
/// <item><description><c>'ambient-light-sensor'</c></description></item>
445446
/// <item><description><c>'background-sync'</c></description></item>
446447
/// <item><description><c>'camera'</c></description></item>
@@ -862,7 +863,7 @@ public partial interface IBrowserContext
862863
/// <see cref="IBrowserContext.SetDefaultTimeout"/>.
863864
/// </para>
864865
/// </remarks>
865-
/// <param name="timeout">Maximum time in milliseconds</param>
866+
/// <param name="timeout">Maximum time in milliseconds. Pass <c>0</c> to disable timeout.</param>
866867
void SetDefaultTimeout(float timeout);
867868

868869
/// <summary>

src/Playwright/API/Generated/IClock.cs

+12
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,12 @@ public partial interface IClock
149149
/// await page.Clock.PauseAtAsync(DateTime.Parse("2020-02-02"));<br/>
150150
/// await page.Clock.PauseAtAsync("2020-02-02");
151151
/// </code>
152+
/// <para>
153+
/// For best results, install the clock before navigating the page and set it to a time
154+
/// slightly before the intended test time. This ensures that all timers run normally
155+
/// during page loading, preventing the page from getting stuck. Once the page has fully
156+
/// loaded, you can safely use <see cref="IClock.PauseAtAsync"/> to pause the clock.
157+
/// </para>
152158
/// </summary>
153159
/// <param name="time">Time to pause at.</param>
154160
Task PauseAtAsync(DateTime time);
@@ -168,6 +174,12 @@ public partial interface IClock
168174
/// await page.Clock.PauseAtAsync(DateTime.Parse("2020-02-02"));<br/>
169175
/// await page.Clock.PauseAtAsync("2020-02-02");
170176
/// </code>
177+
/// <para>
178+
/// For best results, install the clock before navigating the page and set it to a time
179+
/// slightly before the intended test time. This ensures that all timers run normally
180+
/// during page loading, preventing the page from getting stuck. Once the page has fully
181+
/// loaded, you can safely use <see cref="IClock.PauseAtAsync"/> to pause the clock.
182+
/// </para>
171183
/// </summary>
172184
/// <param name="time">Time to pause at.</param>
173185
Task PauseAtAsync(string time);

src/Playwright/API/Generated/ILocator.cs

+23-4
Original file line numberDiff line numberDiff line change
@@ -1033,7 +1033,12 @@ public partial interface ILocator
10331033
Task<bool> IsDisabledAsync(LocatorIsDisabledOptions? options = default);
10341034

10351035
/// <summary>
1036-
/// <para>Returns whether the element is <a href="https://playwright.dev/dotnet/docs/actionability#editable">editable</a>.</para>
1036+
/// <para>
1037+
/// Returns whether the element is <a href="https://playwright.dev/dotnet/docs/actionability#editable">editable</a>.
1038+
/// If the target element is not an <c>&lt;input&gt;</c>, <c>&lt;textarea&gt;</c>, <c>&lt;select&gt;</c>,
1039+
/// <c>[contenteditable]</c> and does not have a role allowing <c>[aria-readonly]</c>,
1040+
/// this method throws an error.
1041+
/// </para>
10371042
/// <para>
10381043
/// If you need to assert that an element is editable, prefer <see cref="ILocatorAssertions.ToBeEditableAsync"/>
10391044
/// to avoid flakiness. See <a href="https://playwright.dev/dotnet/docs/test-assertions">assertions
@@ -1157,24 +1162,38 @@ public partial interface ILocator
11571162
/// <para>Creates a locator matching all elements that match one or both of the two locators.</para>
11581163
/// <para>
11591164
/// Note that when both locators match something, the resulting locator will have multiple
1160-
/// matches and violate <a href="https://playwright.dev/dotnet/docs/locators#strictness">locator
1161-
/// strictness</a> guidelines.
1165+
/// matches, potentially causing a <a href="https://playwright.dev/dotnet/docs/locators#strictness">locator
1166+
/// strictness</a> violation.
11621167
/// </para>
11631168
/// <para>**Usage**</para>
11641169
/// <para>
11651170
/// Consider a scenario where you'd like to click on a "New email" button, but sometimes
11661171
/// a security settings dialog shows up instead. In this case, you can wait for either
11671172
/// a "New email" button, or a dialog and act accordingly.
11681173
/// </para>
1174+
/// <para>
1175+
/// If both "New email" button and security dialog appear on screen, the "or" locator
1176+
/// will match both of them, possibly throwing the <a href="https://playwright.dev/dotnet/docs/locators#strictness">"strict
1177+
/// mode violation" error</a>. In this case, you can use <see cref="ILocator.First"/>
1178+
/// to only match one of them.
1179+
/// </para>
11691180
/// <code>
11701181
/// var newEmail = page.GetByRole(AriaRole.Button, new() { Name = "New" });<br/>
11711182
/// var dialog = page.GetByText("Confirm security settings");<br/>
1172-
/// await Expect(newEmail.Or(dialog)).ToBeVisibleAsync();<br/>
1183+
/// await Expect(newEmail.Or(dialog).First).ToBeVisibleAsync();<br/>
11731184
/// if (await dialog.IsVisibleAsync())<br/>
11741185
/// await page.GetByRole(AriaRole.Button, new() { Name = "Dismiss" }).ClickAsync();<br/>
11751186
/// await newEmail.ClickAsync();
11761187
/// </code>
11771188
/// </summary>
1189+
/// <remarks>
1190+
/// <para>
1191+
/// If both "New email" button and security dialog appear on screen, the "or" locator
1192+
/// will match both of them, possibly throwing the <a href="https://playwright.dev/dotnet/docs/locators#strictness">"strict
1193+
/// mode violation" error</a>. In this case, you can use <see cref="ILocator.First"/>
1194+
/// to only match one of them.
1195+
/// </para>
1196+
/// </remarks>
11781197
/// <param name="locator">Alternative locator to match.</param>
11791198
ILocator Or(ILocator locator);
11801199

0 commit comments

Comments
 (0)