Skip to content

Commit

Permalink
chore(roll): roll Playwright to v1.41.0 (#2822)
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt authored Jan 17, 2024
1 parent 581450c commit 0715817
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/Common/Version.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<AssemblyVersion>1.40.0</AssemblyVersion>
<PackageVersion>$(AssemblyVersion)</PackageVersion>
<DriverVersion>1.41.0-beta-1705092460000</DriverVersion>
<DriverVersion>1.41.0</DriverVersion>
<ReleaseVersion>$(AssemblyVersion)</ReleaseVersion>
<FileVersion>$(AssemblyVersion)</FileVersion>
<NoDefaultExcludes>true</NoDefaultExcludes>
Expand Down
4 changes: 2 additions & 2 deletions src/Playwright/API/Generated/IElementHandle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1135,8 +1135,8 @@ public partial interface IElementHandle : IJSHandle
/// <item><description><c>"visible"</c> Wait until the element is <a href="https://playwright.dev/dotnet/docs/actionability#visible">visible</a>.</description></item>
/// <item><description>
/// <c>"hidden"</c> Wait until the element is <a href="https://playwright.dev/dotnet/docs/actionability#visible">not
/// visible</a> or <a href="https://playwright.dev/dotnet/docs/actionability#attached">not
/// attached</a>. Note that waiting for hidden does not throw when the element detaches.
/// visible</a> or not attached. Note that waiting for hidden does not throw when the
/// element detaches.
/// </description></item>
/// <item><description>
/// <c>"stable"</c> Wait until the element is both <a href="https://playwright.dev/dotnet/docs/actionability#visible">visible</a>
Expand Down
7 changes: 3 additions & 4 deletions src/Playwright/API/Generated/ILocatorAssertions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ public partial interface ILocatorAssertions

/// <summary>
/// <para>
/// Ensures that <see cref="ILocator"/> points to an <a href="https://playwright.dev/dotnet/docs/actionability#attached">attached</a>
/// DOM node.
/// Ensures that <see cref="ILocator"/> points to an element that is <a href="https://developer.mozilla.org/en-US/docs/Web/API/Node/isConnected">connected</a>
/// to a Document or a ShadowRoot.
/// </para>
/// <para>**Usage**</para>
/// <code>await Expect(Page.GetByText("Hidden text")).ToBeAttachedAsync();</code>
Expand Down Expand Up @@ -191,8 +191,7 @@ public partial interface ILocatorAssertions

/// <summary>
/// <para>
/// Ensures that <see cref="ILocator"/> points to an <a href="https://playwright.dev/dotnet/docs/actionability#attached">attached</a>
/// and <a href="https://playwright.dev/dotnet/docs/actionability#visible">visible</a>
/// Ensures that <see cref="ILocator"/> points to an attached and <a href="https://playwright.dev/dotnet/docs/actionability#visible">visible</a>
/// DOM node.
/// </para>
/// <para>To check that at least one element from the list is visible, use <see cref="ILocator.First"/>.</para>
Expand Down
2 changes: 1 addition & 1 deletion src/Playwright/Core/RouteHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ namespace Microsoft.Playwright.Core;

internal class RouteHandler
{
private HashSet<HandlerInvocation> _activeInvocations = new HashSet<HandlerInvocation>();
private readonly HashSet<HandlerInvocation> _activeInvocations = new HashSet<HandlerInvocation>();

private bool _ignoreException;

Expand Down

0 comments on commit 0715817

Please sign in to comment.