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 to ^1.42.0 #424

Merged
merged 1 commit into from
Feb 28, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 29, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
playwright (source) ^1.40.0 -> ^1.42.0 age adoption passing confidence

Release Notes

microsoft/playwright (playwright)

v1.42.0

Compare Source

New APIs

  • New method page.addLocatorHandler() registers a callback that will be invoked when specified element becomes visible and may block Playwright actions. The callback can get rid of the overlay. Here is an example that closes a cookie dialog when it appears:
// Setup the handler.
await page.addLocatorHandler(
    page.getByRole('heading', { name: 'Hej! You are in control of your cookies.' }),
    async () => {
      await page.getByRole('button', { name: 'Accept all' }).click();
    });
// Write the test as usual.
await page.goto('https://www.ikea.com/');
await page.getByRole('link', { name: 'Collection of blue and white' }).click();
await expect(page.getByRole('heading', { name: 'Light and easy' })).toBeVisible();
electronApp.on('console', async msg => {
  const values = [];
  for (const arg of msg.args())
    values.push(await arg.jsonValue());
  console.log(...values);
});
await electronApp.evaluate(() => console.log('hello', 5, { foo: 'bar' }));
  • New syntax for adding tags to the tests (@​-tokens in the test title are still supported):
test('test customer login', {
  tag: ['@​fast', '@​login'],
}, async ({ page }) => {
  // ...
});

Use --grep command line option to run only tests with certain tags.

npx playwright test --grep @​fast
  • --project command line flag now supports '*' wildcard:
npx playwright test --project='*mobile*'
test('test full report', {
  annotation: [
    { type: 'issue', description: 'https://github.com/microsoft/playwright/issues/23180' },
    { type: 'docs', description: 'https://playwright.dev/docs/test-annotations#tag-tests' },
  ],
}, async ({ page }) => {
  // ...
});

Announcements

  • ⚠️ Ubuntu 18 is not supported anymore.

Browser Versions

  • Chromium 123.0.6312.4
  • Mozilla Firefox 123.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 122
  • Microsoft Edge 123

v1.41.2

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/29123 - [REGRESSION] route.continue: Protocol error (Fetch.continueRequest): Invalid InterceptionId.

Browser Versions

  • Chromium 121.0.6167.57
  • Mozilla Firefox 121.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 120
  • Microsoft Edge 120

v1.41.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/29067 - [REGRESSION] Codegen/Recorder: not all clicks are being actioned nor recordedhttps://github.com/microsoft/playwright/issues/290288 - [REGRESSION] React component tests throw type error when passing null/undefined to componenhttps://github.com/microsoft/playwright/issues/2902727 - [REGRESSION] React component tests not passing Date prop valuhttps://github.com/microsoft/playwright/issues/29023023 - [REGRESSION] React component tests not rendering children phttps://github.com/microsoft/playwright/issues/290199019 - [REGRESSION] trace.playwright.dev does not currently support the loading from URL

Browser Versions

  • Chromium 121.0.6167.57
  • Mozilla Firefox 121.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 120
  • Microsoft Edge 120

v1.41.0

Compare Source

New APIs

Browser Versions

  • Chromium 121.0.6167.57
  • Mozilla Firefox 121.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 120
  • Microsoft Edge 120

v1.40.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/28319 - [REGRESSION]: Version 1.40.0 Produces corrupted traceshttps://github.com/microsoft/playwright/issues/283711 - [BUG] The color of the 'ok' text did not change to green in the vs code test results sectiohttps://github.com/microsoft/playwright/issues/2832121 - [BUG] Ambiguous test outcome and status for serial mohttps://github.com/microsoft/playwright/issues/28362362 - [BUG] Merging blobs ends up in Error: Cannot create a string longer than 0x1fffffe8 characthttps://github.com/microsoft/playwright/pull/282398239 - fix: collect all errors in removeFolders

Browser Versions
  • Chromium 120.0.6099.28
  • Mozilla Firefox 119.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 119
  • Microsoft Edge 119

Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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.

@renovate renovate bot enabled auto-merge (squash) May 29, 2023 00:57
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes May 29, 2023
renovate-approve[bot]
renovate-approve bot previously approved these changes May 29, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 2 times, most recently from 468b9c0 to f87c368 Compare May 31, 2023 06:19
@renovate renovate bot changed the title chore(deps): update dependency playwright to ^1.34.3 chore(deps): update dependency playwright to ^1.34.3 - autoclosed Jun 5, 2023
@renovate renovate bot closed this Jun 5, 2023
auto-merge was automatically disabled June 5, 2023 03:29

Pull request was closed

@renovate renovate bot deleted the renovate/playwright-monorepo branch June 5, 2023 03:29
@renovate renovate bot changed the title chore(deps): update dependency playwright to ^1.34.3 - autoclosed chore(deps): update dependency playwright to ^1.34.3 Jun 9, 2023
@renovate renovate bot reopened this Jun 9, 2023
@renovate renovate bot restored the renovate/playwright-monorepo branch June 9, 2023 00:43
@renovate renovate bot changed the title chore(deps): update dependency playwright to ^1.34.3 chore(deps): update dependency playwright to ^1.35.0 Jun 9, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from f87c368 to 811cdfb Compare June 9, 2023 05:33
@renovate renovate bot changed the title chore(deps): update dependency playwright to ^1.35.0 chore(deps): update dependency playwright to ^1.35.1 Jun 15, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 811cdfb to 16bae0f Compare June 15, 2023 18:52
@renovate renovate bot changed the title chore(deps): update dependency playwright to ^1.35.1 chore(deps): update dependency playwright to ^1.36.0 Jul 11, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 16bae0f to 9a0b119 Compare July 11, 2023 17:42
@renovate renovate bot changed the title chore(deps): update dependency playwright to ^1.36.0 chore(deps): update dependency playwright to ^1.36.1 Jul 14, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 9a0b119 to 9a06120 Compare July 14, 2023 22:48
@renovate renovate bot changed the title chore(deps): update dependency playwright to ^1.36.1 chore(deps): update dependency playwright to ^1.36.2 Jul 25, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 9a06120 to 5c0eb05 Compare July 25, 2023 10:26
@renovate renovate bot changed the title chore(deps): update dependency playwright to ^1.36.2 chore(deps): update dependency playwright to ^1.37.0 Aug 11, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 5c0eb05 to ff4f409 Compare August 11, 2023 01:01
@renovate renovate bot changed the title chore(deps): update dependency playwright to ^1.37.0 chore(deps): update dependency playwright to ^1.37.1 Aug 17, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from ff4f409 to 728834c Compare August 17, 2023 21:36
@renovate renovate bot changed the title chore(deps): update dependency playwright to ^1.37.1 chore(deps): update dependency playwright to ^1.38.0 Sep 14, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 728834c to 7078872 Compare September 14, 2023 01:40
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 7078872 to 62d6982 Compare September 21, 2023 22:55
@renovate renovate bot changed the title chore(deps): update dependency playwright to ^1.38.1 chore(deps): update dependency playwright to ^1.39.0 Oct 12, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 62d6982 to 12de61e Compare October 12, 2023 01:13
@renovate renovate bot changed the title chore(deps): update dependency playwright to ^1.39.0 chore(deps): update dependency playwright to ^1.40.0 Nov 17, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 4 times, most recently from 25469e4 to a2195d6 Compare November 23, 2023 00:49
@renovate renovate bot changed the title chore(deps): update dependency playwright to ^1.40.0 chore(deps): update dependency playwright to ^1.40.0 - autoclosed Nov 23, 2023
@renovate renovate bot closed this Nov 23, 2023
@renovate renovate bot deleted the renovate/playwright-monorepo branch November 23, 2023 00:54
@renovate renovate bot changed the title chore(deps): update dependency playwright to ^1.40.0 - autoclosed chore(deps): update dependency playwright to ^1.40.0 Nov 28, 2023
@renovate renovate bot reopened this Nov 28, 2023
@renovate renovate bot restored the renovate/playwright-monorepo branch November 28, 2023 22:58
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from a2195d6 to affc0b0 Compare November 29, 2023 06:12
@renovate renovate bot changed the title chore(deps): update dependency playwright to ^1.40.0 chore(deps): update dependency playwright to ^1.40.1 Nov 29, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from affc0b0 to 99aea6c Compare January 16, 2024 19:52
@renovate renovate bot changed the title chore(deps): update dependency playwright to ^1.40.1 chore(deps): update dependency playwright to ^1.41.0 Jan 16, 2024
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 99aea6c to 0b7fff6 Compare January 20, 2024 00:15
@renovate renovate bot changed the title chore(deps): update dependency playwright to ^1.41.0 chore(deps): update dependency playwright to ^1.41.1 Jan 20, 2024
@renovate renovate bot changed the title chore(deps): update dependency playwright to ^1.41.1 chore(deps): update dependency playwright to ^1.41.2 Feb 1, 2024
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 0b7fff6 to 4e49cb7 Compare February 1, 2024 21:20
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 4e49cb7 to 0b8f0b4 Compare February 27, 2024 19:33
@renovate renovate bot changed the title chore(deps): update dependency playwright to ^1.41.2 chore(deps): update dependency playwright to ^1.42.0 Feb 27, 2024
@hannoeru hannoeru merged commit bda1e6d into main Feb 28, 2024
8 checks passed
@hannoeru hannoeru deleted the renovate/playwright-monorepo branch February 28, 2024 01:57
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