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

fix(deps): bump playwright-chromium from 1.32.3 to 1.33.0 #10

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 28, 2023

Bumps playwright-chromium from 1.32.3 to 1.33.0.

Release notes

Sourced from playwright-chromium's releases.

v1.33.0

Locators Update

  • Use [locator.or()] to create a locator that matches either of the two locators. Consider a scenario where you'd like to click on a "New email" button, but sometimes a security settings dialog shows up instead. In this case, you can wait for either a "New email" button, or a dialog and act accordingly:

    const newEmail = page.getByRole('button', { name: 'New' });
    const dialog = page.getByText('Confirm security settings');
    await expect(newEmail.or(dialog)).toBeVisible();
    if (await dialog.isVisible())
      await page.getByRole('button', { name: 'Dismiss' }).click();
    await newEmail.click();
  • Use new options hasNot and hasNotText in [locator.filter()] to find elements that do not match certain conditions.

    const rowLocator = page.locator('tr');
    await rowLocator
        .filter({ hasNotText: 'text in column 1' })
        .filter({ hasNot: page.getByRole('button', { name: 'column 2 button' }) })
        .screenshot();
  • Use new web-first assertion [locatorAssertions.toBeAttached()] to ensure that the element is present in the page's DOM. Do not confuse with the [locatorAssertions.toBeVisible()] that ensures that element is both attached & visible.

New APIs

  • [locator.or()]
  • New option hasNot in [locator.filter()]
  • New option hasNotText in [locator.filter()]
  • [locatorAssertions.toBeAttached()]
  • New option timeout in [route.fetch()]
  • [reporter.onExit()]

⚠️ Breaking change

  • The mcr.microsoft.com/playwright:v1.33.0 now serves a Playwright image based on Ubuntu Jammy. To use the focal-based image, please use mcr.microsoft.com/playwright:v1.33.0-focal instead.

Browser Versions

  • Chromium 113.0.5672.53
  • Mozilla Firefox 112.0
  • WebKit 16.4

This version was also tested against the following stable channels:

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 28, 2023

The following labels could not be found: dependencies.

@github-actions github-actions bot enabled auto-merge (squash) April 28, 2023 05:05
Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm approving this pull request because it includes a patch or minor update

@dependabot dependabot bot force-pushed the dependabot-npm_and_yarn-playwright-chromium-1.33.0 branch from 0e737d1 to af5c704 Compare April 28, 2023 05:11
Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm approving this pull request because it includes a patch or minor update

@dependabot dependabot bot force-pushed the dependabot-npm_and_yarn-playwright-chromium-1.33.0 branch from af5c704 to 9f06db2 Compare April 28, 2023 05:13
Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm approving this pull request because it includes a patch or minor update

@dependabot dependabot bot force-pushed the dependabot-npm_and_yarn-playwright-chromium-1.33.0 branch from 9f06db2 to 25cc0ee Compare April 28, 2023 05:15
Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm approving this pull request because it includes a patch or minor update

@dependabot dependabot bot force-pushed the dependabot-npm_and_yarn-playwright-chromium-1.33.0 branch from 25cc0ee to 0155b0e Compare April 28, 2023 05:18
Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm approving this pull request because it includes a patch or minor update

@dependabot dependabot bot force-pushed the dependabot-npm_and_yarn-playwright-chromium-1.33.0 branch from 0155b0e to b636d45 Compare April 28, 2023 05:20
Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm approving this pull request because it includes a patch or minor update

@dependabot dependabot bot force-pushed the dependabot-npm_and_yarn-playwright-chromium-1.33.0 branch from b636d45 to cfd5953 Compare April 28, 2023 05:22
Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm approving this pull request because it includes a patch or minor update

auto-merge was automatically disabled April 28, 2023 05:24

Base branch was modified

Bumps [playwright-chromium](https://github.com/Microsoft/playwright) from 1.32.3 to 1.33.0.
- [Release notes](https://github.com/Microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.32.3...v1.33.0)

---
updated-dependencies:
- dependency-name: playwright-chromium
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot-npm_and_yarn-playwright-chromium-1.33.0 branch from cfd5953 to ca7d370 Compare April 28, 2023 05:25
@github-actions github-actions bot enabled auto-merge (squash) April 28, 2023 05:25
Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm approving this pull request because it includes a patch or minor update

@github-actions github-actions bot merged commit 0fdfd33 into main Apr 28, 2023
@dependabot dependabot bot deleted the dependabot-npm_and_yarn-playwright-chromium-1.33.0 branch April 28, 2023 05:27
jayree pushed a commit that referenced this pull request Apr 28, 2023
## [1.0.2](v1.0.1...v1.0.2) (2023-04-28)

### Bug Fixes

* **deps:** bump @jayree/changelog from 1.1.0 to 1.1.1 ([#8](#8)) ([7395176](7395176))
* **deps:** bump @salesforce/sf-plugins-core from 2.2.9 to 2.2.11 ([#4](#4)) ([d62b78b](d62b78b))
* **deps:** bump playwright-chromium from 1.32.3 to 1.33.0 ([#10](#10)) ([0fdfd33](0fdfd33))
@jayree
Copy link
Owner

jayree commented Apr 28, 2023

🎉 This PR is included in version 1.0.2 🎉

The release is available on:

Your semantic-release bot 📦🚀

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

Successfully merging this pull request may close these issues.

1 participant