Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(roll): roll Playwright to 1.47.0-beta-1725889926000 #3002

Merged
merged 1 commit into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.46.0</AssemblyVersion>
<PackageVersion>$(AssemblyVersion)</PackageVersion>
<DriverVersion>1.47.0</DriverVersion>
<DriverVersion>1.47.0-beta-1725889926000</DriverVersion>
<ReleaseVersion>$(AssemblyVersion)</ReleaseVersion>
<FileVersion>$(AssemblyVersion)</FileVersion>
<NoDefaultExcludes>true</NoDefaultExcludes>
Expand Down
10 changes: 5 additions & 5 deletions src/Playwright/API/Generated/IPageAssertions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@ public partial interface IPageAssertions
/// Makes the assertion check for the opposite condition. For example, this code tests
/// that the page URL doesn't contain <c>"error"</c>:
/// </para>
/// <code>await Expect(Page).Not.ToHaveURLAsync("error");</code>
/// <code>await Expect(Page).Not.ToHaveURL("error");</code>
/// </summary>
public IPageAssertions Not { get; }

/// <summary>
/// <para>Ensures the page has the given title.</para>
/// <para>**Usage**</para>
/// <code>await Expect(Page).ToHaveTitleAsync("Playwright");</code>
/// <code>await Expect(Page).ToHaveTitle("Playwright");</code>
/// </summary>
/// <param name="titleOrRegExp">Expected title or RegExp.</param>
/// <param name="options">Call options</param>
Expand All @@ -76,7 +76,7 @@ public partial interface IPageAssertions
/// <summary>
/// <para>Ensures the page has the given title.</para>
/// <para>**Usage**</para>
/// <code>await Expect(Page).ToHaveTitleAsync("Playwright");</code>
/// <code>await Expect(Page).ToHaveTitle("Playwright");</code>
/// </summary>
/// <param name="titleOrRegExp">Expected title or RegExp.</param>
/// <param name="options">Call options</param>
Expand All @@ -85,7 +85,7 @@ public partial interface IPageAssertions
/// <summary>
/// <para>Ensures the page is navigated to the given URL.</para>
/// <para>**Usage**</para>
/// <code>await Expect(Page).ToHaveURLAsync(new Regex(".*checkout"));</code>
/// <code>await Expect(Page).ToHaveURL(new Regex(".*checkout"));</code>
/// </summary>
/// <param name="urlOrRegExp">Expected URL string or RegExp.</param>
/// <param name="options">Call options</param>
Expand All @@ -94,7 +94,7 @@ public partial interface IPageAssertions
/// <summary>
/// <para>Ensures the page is navigated to the given URL.</para>
/// <para>**Usage**</para>
/// <code>await Expect(Page).ToHaveURLAsync(new Regex(".*checkout"));</code>
/// <code>await Expect(Page).ToHaveURL(new Regex(".*checkout"));</code>
/// </summary>
/// <param name="urlOrRegExp">Expected URL string or RegExp.</param>
/// <param name="options">Call options</param>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,15 @@ internal class PlaywrightInitializer
[JsonPropertyName("chromium")]
public Core.BrowserType Chromium { get; set; }

[JsonPropertyName("bidi")]
public Core.BrowserType Bidi { get; set; }

[JsonPropertyName("firefox")]
public Core.BrowserType Firefox { get; set; }

[JsonPropertyName("webkit")]
public Core.BrowserType Webkit { get; set; }

[JsonPropertyName("bidiChromium")]
public Core.BrowserType BidiChromium { get; set; }

[JsonPropertyName("bidiFirefox")]
public Core.BrowserType BidiFirefox { get; set; }

[JsonPropertyName("utils")]
public Core.LocalUtils Utils { get; set; }

Expand Down
Loading