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(deps): update dependency microsoft.playwright to v1.43.0 #5013

Merged
merged 1 commit into from
Apr 17, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 16, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
Microsoft.Playwright 1.42.0 -> 1.43.0 age adoption passing confidence

Release Notes

microsoft/playwright-dotnet (Microsoft.Playwright)

v1.43.0

New APIs

  • Method BrowserContext.ClearCookiesAsync() now supports filters to remove only some cookies.

    // Clear all cookies.
    await Context.ClearCookiesAsync();
    // New: clear cookies with a particular name.
    await Context.ClearCookiesAsync(new() { Name = "session-id" });
    // New: clear cookies for a particular domain.
    await Context.ClearCookiesAsync(new() { Domain = "my-origin.com" });
  • New property Locator.ContentFrame converts a Locator object to a FrameLocator. This can be useful when you have a Locator object obtained somewhere, and later on would like to interact with the content inside the frame.

    var locator = Page.Locator("iframe[name='embedded']");
    // ...
    var frameLocator = locator.ContentFrame;
    await frameLocator.GetByRole(AriaRole.Button).ClickAsync();
  • New property FrameLocator.Owner converts a FrameLocator object to a Locator. This can be useful when you have a FrameLocator object obtained somewhere, and later on would like to interact with the iframe element.

    var frameLocator = page.FrameLocator("iframe[name='embedded']");
    // ...
    var locator = frameLocator.Owner;
    await Expect(locator).ToBeVisibleAsync();

Browser Versions

  • Chromium 124.0.6367.8
  • Mozilla Firefox 124.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 123
  • Microsoft Edge 123

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

Copy link
Contributor

🍹 preview on uier/signalco/uier/next

Pulumi report
Previewing update (signalco/next)

View Live: https://app.pulumi.com/signalco/uier/next/previews/24197ced-9b8d-44af-8477-bed1fcec4992

@ Previewing update.............

@ Previewing update....
pulumi:pulumi:Stack uier-next running 
@ Previewing update.....
vercel:index:Project vercel-uier  
vercel:index:ProjectDomain vercel-uier-domain  
cloudflare:index:Record vercel-uier  
pulumi:pulumi:Stack uier-next  
Resources:
4 unchanged

Copy link
Contributor

🍹 preview on workingparty/signalco/workingparty/next

Pulumi report
Previewing update (signalco/next)

View Live: https://app.pulumi.com/signalco/workingparty/next/previews/c1b152ab-427a-4f90-b226-1e50a78a81c3

@ Previewing update...............

@ Previewing update......
pulumi:pulumi:Stack workingparty-next running 
@ Previewing update......
cloudflare:index:Record vercel-wp  [diff: ~provider]
azure-native:resources:ResourceGroup workingparty-next  [diff: ~provider]
@ Previewing update....
azure-native:storage:StorageAccount sawpstorage  [diff: ~provider]
@ Previewing update....
vercel:index:Project vercel-wp  
azure-native:communication:EmailService wp-azure-email-service  [diff: ~provider]
azure-native:documentdb:DatabaseAccount wpdb  [diff: ~provider]
azure-native:storage:Queue wp-email-queue  [diff: ~provider]
vercel:index:ProjectEnvironmentVariable vercel-wp-env-stripepublic  
vercel:index:ProjectEnvironmentVariable vercel-wp-env-jwtsecret  
vercel:index:ProjectEnvironmentVariable vercel-wp-env-stripesecret  
vercel:index:ProjectEnvironmentVariable vercel-wp-env-appdomain  
vercel:index:ProjectEnvironmentVariable vercel-wp-env-emaildomain  
vercel:index:ProjectDomain vercel-wp-domain  
vercel:index:ProjectEnvironmentVariable vercel-wp-env-openai  
vercel:index:ProjectEnvironmentVariable vercel-wp-env-stripewebhook  
azure-native:communication:Domain wp-aes-domain  [diff: ~provider]
azure-native:documentdb:SqlResourceSqlDatabase wpdata  [diff: ~provider]
azure-native:communication:SenderUsername wp-aes-sender-notifications  [diff: ~provider]
azure-native:communication:CommunicationService wp-azure-communication-service  [diff: ~provider]
cloudflare:index:Record wp-aes-domain-dkim2  [diff: ~provider]
cloudflare:index:Record wp-aes-domain-spf  [diff: ~provider]
cloudflare:index:Record wp-aes-domain-dkim  [diff: ~provider]
cloudflare:index:Record wp-aes-domain-domainverify  [diff: ~provider]
azure-native:communication:SenderUsername wp-aes-sender-system  [diff: ~provider]
azure-native:documentdb:SqlResourceSqlContainer dbcontainer-login-requests  [diff: ~provider]
azure-native:documentdb:SqlResourceSqlContainer dbcontainer-plans  [diff: ~provider]
azure-native:documentdb:SqlResourceSqlContainer dbcontainer-accounts  [diff: ~provider]
azure-native:documentdb:SqlResourceSqlContainer dbcontainer-email-user  [diff: ~provider]
azure-native:documentdb:SqlResourceSqlContainer dbcontainer-users  [diff: ~provider]
azure-native:documentdb:SqlResourceSqlContainer dbcontainer-threads  [diff: ~provider]
azure-native:documentdb:SqlResourceSqlContainer dbcontainer-workers  [diff: ~provider]
azure-native:documentdb:SqlResourceSqlContainer dbcontainer-usage  [diff: ~provider]
azure-native:documentdb:SqlResourceSqlContainer dbcontainer-subscriptions  [diff: ~provider]
vercel:index:ProjectEnvironmentVariable vercel-wp-env-cosmos  
vercel:index:ProjectEnvironmentVariable vercel-wp-env-acs  
pulumi:pulumi:Stack workingparty-next  
Resources:
36 unchanged

@AleksandarDev AleksandarDev enabled auto-merge April 16, 2024 19:02
@AleksandarDev AleksandarDev disabled auto-merge April 17, 2024 20:20
@AleksandarDev AleksandarDev merged commit 79a60a9 into next Apr 17, 2024
27 of 30 checks passed
@AleksandarDev AleksandarDev deleted the renovate/playwright-dotnet-monorepo branch April 17, 2024 20:20
@AleksandarDev
Copy link
Contributor

🎉 This PR is included in version 1.148.0-next.18 🎉

The release is available on GitHub release

Your semantic-release bot 📦🚀

@AleksandarDev
Copy link
Contributor

🎉 This PR is included in version 1.148.0 🎉

The release is available on GitHub release

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant