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 playwright-chromium to v1.33.0 #638

Merged
merged 1 commit into from
May 5, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 23, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
playwright-chromium (source) 1.31.2 -> 1.33.0 age adoption passing confidence
playwright-chromium (source) 1.27.1 -> 1.33.0 age adoption passing confidence

Release Notes

Microsoft/playwright

v1.33.0

Compare Source

Locators Update
  • Use [locator.or()][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()][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()][locatorAssertions.toBeAttached()] to ensure that the element
    is present in the page's DOM. Do not confuse with the [locatorAssertions.toBeVisible()][locatorAssertions.toBeVisible()] that ensures that
    element is both attached & visible.

New APIs
  • [locator.or()][locator.or()]
  • New option hasNot in [locator.filter()][locator.filter()]
  • New option hasNotText in [locator.filter()][locator.filter()]
  • [locatorAssertions.toBeAttached()][locatorAssertions.toBeAttached()]
  • New option timeout in [route.fetch()][route.fetch()]
  • [reporter.onExit()][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:

  • Google Chrome 112
  • Microsoft Edge 112

v1.32.3

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/22144 - [BUG] WebServer only starting after timeouthttps://github.com/microsoft/playwright/pull/221911 - chore: allow reusing browser between the testshttps://github.com/microsoft/playwright/issues/222155 - [BUG] Tests failing in toPass often marked as passed

Browser Versions
  • Chromium 112.0.5615.29
  • Mozilla Firefox 111.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 111
  • Microsoft Edge 111

v1.32.2

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/21993 - [BUG] Browser crash when using Playwright VSC extension and trace-viewer enabled in confighttps://github.com/microsoft/playwright/issues/220033 - [Feature] Make Vue component mount props less restrictivhttps://github.com/microsoft/playwright/issues/2208989 - [REGRESSION]: Tests failing with "Error: tracing.stopChunk"

Browser Versions
  • Chromium 112.0.5615.29
  • Mozilla Firefox 111.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 111
  • Microsoft Edge 111

v1.32.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/21832 - [BUG] Trace is not opening on specific broken locatorhttps://github.com/microsoft/playwright/issues/218977 - [BUG] --ui fails to open with error reading mainFrame from an undefined this._pahttps://github.com/microsoft/playwright/issues/21918918 - [BUG]: UI mode, skipped tests not being fohttps://github.com/microsoft/playwright/issues/219411941 - [BUG] UI mode does not show webServer startup erhttps://github.com/microsoft/playwright/issues/2195321953 - [BUG] Parameterized tests are not displayed in the UI mode

Browser Versions

  • Chromium 112.0.5615.29
  • Mozilla Firefox 111.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 111
  • Microsoft Edge 111

v1.32.0

Compare Source

📣 Introducing UI Mode (preview)

Playwright v1.32 updates

New UI Mode lets you explore, run and debug tests. Comes with a built-in watch mode.

Playwright UI Mode

Engage with a new flag --ui:

npx playwright test --ui

New APIs

⚠️ Breaking change in component tests

Note: component tests only, does not affect end-to-end tests.

  • @playwright/experimental-ct-react now supports React 18 only.
  • If you're running component tests with React 16 or 17, please replace
    @playwright/experimental-ct-react with @playwright/experimental-ct-react17.

Browser Versions

  • Chromium 112.0.5615.29
  • Mozilla Firefox 111.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 111
  • Microsoft Edge 111

Configuration

📅 Schedule: Branch creation - "every weekend" in timezone America/Chicago, 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 these updates 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.

@vercel
Copy link

vercel bot commented Jan 23, 2023

The latest updates on your projects. Learn more about Vercel for Git ↗︎

1 Ignored Deployment
Name Status Preview Comments Updated (UTC)
vite-plugin-docs ⬜️ Ignored (Inspect) May 5, 2023 0:38am

@changeset-bot
Copy link

changeset-bot bot commented Jan 23, 2023

⚠️ No Changeset found

Latest commit: a0e92aa

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from d9b2bb3 to 954525c Compare January 25, 2023 03:19
@renovate renovate bot changed the title chore(deps): update dependency playwright-chromium to v1.29.2 chore(deps): update dependency playwright-chromium to v1.30.0 Jan 25, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 954525c to 18d6725 Compare January 29, 2023 18:51
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 3 times, most recently from d29f648 to 4392ffc Compare February 21, 2023 20:47
@renovate renovate bot changed the title chore(deps): update dependency playwright-chromium to v1.30.0 chore(deps): update dependency playwright-chromium to v1.31.0 Feb 21, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 4392ffc to 5a51098 Compare February 23, 2023 06:14
@renovate renovate bot changed the title chore(deps): update dependency playwright-chromium to v1.31.0 chore(deps): update dependency playwright-chromium to v1.31.1 Feb 23, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 2 times, most recently from 2fae1c0 to fae2bc3 Compare March 2, 2023 21:03
@renovate renovate bot changed the title chore(deps): update dependency playwright-chromium to v1.31.1 chore(deps): update dependency playwright-chromium to v1.31.2 Mar 2, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 4 times, most recently from 50e7810 to c9d69f5 Compare March 13, 2023 03:03
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from c9d69f5 to dafe259 Compare March 23, 2023 02:39
@renovate renovate bot changed the title chore(deps): update dependency playwright-chromium to v1.31.2 chore(deps): update dependency playwright-chromium to v1.32.0 Mar 23, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from dafe259 to 0c0901a Compare March 25, 2023 09:30
@renovate renovate bot changed the title chore(deps): update dependency playwright-chromium to v1.32.0 chore(deps): update dependency playwright-chromium to v1.32.1 Mar 25, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 2 times, most recently from 53941c0 to 712be1a Compare March 26, 2023 20:17
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 712be1a to 59789e5 Compare April 4, 2023 05:30
@renovate renovate bot changed the title chore(deps): update dependency playwright-chromium to v1.32.1 chore(deps): update dependency playwright-chromium to v1.32.2 Apr 4, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 59789e5 to be4c482 Compare April 11, 2023 04:02
@renovate renovate bot changed the title chore(deps): update dependency playwright-chromium to v1.32.2 chore(deps): update dependency playwright-chromium to v1.32.3 Apr 11, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from be4c482 to a724619 Compare April 17, 2023 03:35
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from a724619 to f56e065 Compare April 27, 2023 05:13
@renovate renovate bot changed the title chore(deps): update dependency playwright-chromium to v1.32.3 chore(deps): update dependency playwright-chromium to v1.33.0 Apr 27, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from f56e065 to a0e92aa Compare May 5, 2023 00:38
@jacksteamdev jacksteamdev merged commit 40fd379 into main May 5, 2023
@jacksteamdev jacksteamdev deleted the renovate/playwright-monorepo branch May 5, 2023 00:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant