Skip to content

Update dependency @playwright/test to v1.53.0 #46

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 15, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@playwright/test (source) 1.35.0 -> 1.53.0 age adoption passing confidence

Release Notes

microsoft/playwright (@​playwright/test)

v1.53.0

Compare Source

Trace Viewer and HTML Reporter Updates

  • New Steps in Trace Viewer and HTML reporter: New Trace Viewer Steps

  • New option in 'html' reporter to set the title of a specific test run:

    import { defineConfig } from '@​playwright/test';
    
    export default defineConfig({
      reporter: [['html', { title: 'Custom test run #​1028' }]]
    });

Miscellaneous

  • New option kind in testInfo.snapshotPath() controls which snapshot path template is used.

  • New method locator.describe() to describe a locator. Used for trace viewer and reports.

    const button = page.getByTestId('btn-sub').describe('Subscribe button');
    await button.click();
  • npx playwright install --list will now list all installed browsers, versions and locations.

Browser Versions

  • Chromium 138.0.7204.4
  • Mozilla Firefox 139.0
  • WebKit 18.5

This version was also tested against the following stable channels:

  • Google Chrome 137
  • Microsoft Edge 137

v1.52.0

Compare Source

v1.51.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/35093 - [Regression]: TimeoutOverflowWarning: 2149630.634 does not fit into a 32-bit signed integer
https://github.com/microsoft/playwright/issues/35138 - [Regression]: TypeError: Cannot read properties of undefined (reading 'expectInfo')

Browser Versions

  • Chromium 134.0.6998.35
  • Mozilla Firefox 135.0
  • WebKit 18.4

This version was also tested against the following stable channels:

  • Google Chrome 133
  • Microsoft Edge 133

v1.51.0

Compare Source

v1.50.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/34483 - [Feature]: single aria snapshot for different engines/browsershttps://github.com/microsoft/playwright/issues/344977 - [Bug]: Firefox not handling keepalive: true fetch requesthttps://github.com/microsoft/playwright/issues/3450404 - [Bug]: update snapshots not creating good difhttps://github.com/microsoft/playwright/issues/34507507 - [Bug]: snapshotPathTemplate doesnt work when multiple projehttps://github.com/microsoft/playwright/issues/344624462 - [Bug]: updateSnapshots "changed" throws an error

Browser Versions

  • Chromium 133.0.6943.16
  • Mozilla Firefox 134.0
  • WebKit 18.2

This version was also tested against the following stable channels:

  • Google Chrome 132
  • Microsoft Edge 132

v1.50.0

Compare Source

Test runner

  • New option timeout allows specifying a maximum run time for an individual test step. A timed-out step will fail the execution of the test.

    test('some test', async ({ page }) => {
      await test.step('a step', async () => {
        // This step can time out separately from the test
      }, { timeout: 1000 });
    });
  • New method test.step.skip() to disable execution of a test step.

    test('some test', async ({ page }) => {
      await test.step('before running step', async () => {
        // Normal step
      });
    
      await test.step.skip('not yet ready', async () => {
        // This step is skipped
      });
    
      await test.step('after running step', async () => {
        // This step still runs even though the previous one was skipped
      });
    });
  • Expanded expect(locator).toMatchAriaSnapshot() to allow storing of aria snapshots in separate YAML files.

  • Added method expect(locator).toHaveAccessibleErrorMessage() to assert the Locator points to an element with a given aria errormessage.

  • Option testConfig.updateSnapshots added the configuration enum changed. changed updates only the snapshots that have changed, whereas all now updates all snapshots, regardless of whether there are any differences.

  • New option testConfig.updateSourceMethod defines the way source code is updated when testConfig.updateSnapshots is configured. Added overwrite and 3-way modes that write the changes into source code, on top of existing patch mode that creates a patch file.

    npx playwright test --update-snapshots=changed --update-source-method=3way
  • Option testConfig.webServer added a gracefulShutdown field for specifying a process kill signal other than the default SIGKILL.

  • Exposed testStep.attachments from the reporter API to allow retrieval of all attachments created by that step.

  • New option pathTemplate for toHaveScreenshot and toMatchAriaSnapshot assertions in the testConfig.expect configuration.

UI updates

  • Updated default HTML reporter to improve display of attachments.
  • New button for picking elements to produce aria snapshots.
  • Additional details (such as keys pressed) are now displayed alongside action API calls in traces.
  • Display of canvas content in traces is error-prone. Display is now disabled by default, and can be enabled via the Display canvas content UI setting.
  • Call and Network panels now display additional time information.

Breaking

  • expect(locator).toBeEditable() and locator.isEditable() now throw if the target element is not , elements.

    await page.getByLabel('Upload directory').setInputFiles(path.join(__dirname, 'mydir'));
  • Multiple methods like locator.click() or locator.press() now support a ControlOrMeta modifier key. This key maps to Meta on macOS and maps to Control on Windows and Linux.

    // Press the common keyboard shortcut Control+S or Meta+S to trigger a "Save" operation.
    await page.keyboard.press('ControlOrMeta+S');
  • New property httpCredentials.send in apiRequest.newContext() that allows to either always send the Authorization header or only send it in response to 401 Unauthorized.

  • New option reason in apiRequestContext.dispose() that will be included in the error message of ongoing operations interrupted by the context disposal.

  • New option host in browserType.launchServer() allows to accept websocket connections on a specific address instead of unspecified 0.0.0.0.

  • Playwright now supports Chromium, Firefox and WebKit on Ubuntu 24.04.

  • v1.45 is the last release to receive WebKit update for macOS 12 Monterey. Please update macOS to keep using the latest WebKit.

Browser Versions

  • Chromium 127.0.6533.5
  • Mozilla Firefox 127.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 126
  • Microsoft Edge 126

v1.44.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/30779 - [REGRESSION]: When using video: 'on' with VSCode extension the browser got closed
https://github.com/microsoft/playwright/issues/30755 - [REGRESSION]: Electron launch with spaces inside executablePath didn't workhttps://github.com/microsoft/playwright/issues/307700 - [REGRESSION]: Mask elements outside of viewport when creating fullscreen screenshots didn't worhttps://github.com/microsoft/playwright/issues/3085858 - [REGRESSION]: ipv6 got shown instead of localhost in show-trace/show-report

Browser Versions

  • Chromium 125.0.6422.14
  • Mozilla Firefox 125.0.1
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 124
  • Microsoft Edge 124

v1.44.0

Compare Source

New APIs

Accessibility assertions

  • expect(locator).toHaveAccessibleName() checks if the element has the specified accessible name:

    const locator = page.getByRole('button');
    await expect(locator).toHaveAccessibleName('Submit');
  • expect(locator).toHaveAccessibleDescription() checks if the element has the specified accessible description:

    const locator = page.getByRole('button');
    await expect(locator).toHaveAccessibleDescription('Upload a photo');
  • expect(locator).toHaveRole() checks if the element has the specified ARIA role:

    const locator = page.getByTestId('save-button');
    await expect(locator).toHaveRole('button');

Locator handler

  • After executing the handler added with page.addLocatorHandler(), Playwright will now wait until the overlay that triggered the handler is not visible anymore. You can opt-out of this behavior with the new noWaitAfter option.
  • You can use new times option in page.addLocatorHandler() to specify maximum number of times the handler should be run.
  • The handler in page.addLocatorHandler() now accepts the locator as argument.
  • New page.removeLocatorHandler() method for removing previously added locator handlers.
const locator = page.getByText('This interstitial covers the button');
await page.addLocatorHandler(locator, async overlay => {
  await overlay.locator('#close').click();
}, { times: 3, noWaitAfter: true });
// Run your tests that can be interrupted by the overlay.
// ...
await page.removeLocatorHandler(locator);

Miscellaneous options

  • multipart option in apiRequestContext.fetch() now accepts FormData and supports repeating fields with the same name.

    const formData = new FormData();
    formData.append('file', new File(['let x = 2024;'], 'f1.js', { type: 'text/javascript' }));
    formData.append('file', new File(['hello'], 'f2.txt', { type: 'text/plain' }));
    context.request.post('https://example.com/uploadFiles', {
      multipart: formData
    });
  • expect(callback).toPass({ intervals }) can now be configured by expect.toPass.inervals option globally in testConfig.expect or per project in testProject.expect.

  • expect(page).toHaveURL(url) now supports ignoreCase option.

  • testProject.ignoreSnapshots allows to configure per project whether to skip screenshot expectations.

Reporter API

  • New method suite.entries() returns child test suites and test cases in their declaration order. suite.type and testCase.type can be used to tell apart test cases and suites in the list.
  • Blob reporter now allows overriding report file path with a single option outputFile. The same option can also be specified as PLAYWRIGHT_BLOB_OUTPUT_FILE environment variable that might be more convenient on CI/CD.
  • JUnit reporter now supports includeProjectInTestName option.

Command line

  • --last-failed CLI option for running only tests that failed in the previous run.

    First run all tests:

    $ npx playwright test
    
    Running 103 tests using 5 workers
    ...
    2 failed
      [chromium] › my-test.spec.ts:8:5 › two ─────────────────────────────────────────────────────────
      [chromium] › my-test.spec.ts:13:5 › three ──────────────────────────────────────────────────────
    101 passed (30.0s)

    Now fix the failing tests and run Playwright again with --last-failed option:

    $ npx playwright test --last-failed
    
    Running 2 tests using 2 workers
      2 passed (1.2s)

Browser Versions

  • Chromium 125.0.6422.14
  • Mozilla Firefox 125.0.1
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 124
  • Microsoft Edge 124

v1.43.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/30300 - [REGRESSION]: UI mode restarts if keep storage statehttps://github.com/microsoft/playwright/issues/303399 - [REGRESSION]: Brand new install of playwright, unable to run chromium with show browser using vscode

Browser Versions
  • Chromium 124.0.6367.29
  • Mozilla Firefox 124.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 123
  • Microsoft Edge 123

v1.43.0

Compare Source

New APIs

  • Method browserContext.clearCookies() now supports filters to remove only some cookies.

    // Clear all cookies.
    await context.clearCookies();
    // New: clear cookies with a particular name.
    await context.clearCookies({ name: 'session-id' });
    // New: clear cookies for a particular domain.
    await context.clearCookies({ domain: 'my-origin.com' });
  • New mode retain-on-first-failure for testOptions.trace. In this mode, trace is recorded for the first run of each test, but not for retires. When test run fails, the trace file is retained, otherwise it is removed.

    import { defineConfig } from '@​playwright/test';
    
    export default defineConfig({
      use: {
        trace: 'retain-on-first-failure',
      },
    });
  • New property testInfo.tags exposes test tags during test execution.

    test('example', async ({ page }) => {
      console.log(test.info().tags);
    });
  • New method 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.

    const locator = page.locator('iframe[name="embedded"]');
    // ...
    const frameLocator = locator.contentFrame();
    await frameLocator.getByRole('button').click();
  • New method 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.

    const frameLocator = page.frameLocator('iframe[name="embedded"]');
    // ...
    const locator = frameLocator.owner();
    await expect(locator).toBeVisible();

UI Mode Updates

Playwright UI Mode

  • See tags in the test list.
  • Filter by tags by typing @fast or clicking on the tag itself.
  • New shortcuts:
    • F5 to run tests.
    • Shift F5 to stop running tests.
    • Ctrl ` to toggle test output.

Browser Versions

  • Chromium 124.0.6367.29
  • Mozilla Firefox 124.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 123
  • Microsoft Edge 123

v1.42.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/29732 - [Regression]: HEAD requests to webServer.url since v1.42.0https://github.com/microsoft/playwright/issues/297466 - [Regression]: Playwright CT CLI scripts fail due to broken initializePlugin imporhttps://github.com/microsoft/playwright/issues/2973939 - [Bug]: Component tests fails when imported a module with a dot in a nahttps://github.com/microsoft/playwright/issues/29731731 - [Regression]: 1.42.0 breaks some import statemehttps://github.com/microsoft/playwright/issues/297609760 - [Bug]: Possible regression with chained locators in v1.42

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.42.0

Compare Source

New APIs

  • Test tags

    New tag 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
  • Annotating skipped tests

    New annotation syntax for test annotations allows annotating the tests that do not run.

    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 }) => {
      // ...
    });
  • page.addLocatorHandler()

[!WARNING]
This feature is experimental, we are actively looking for the feedback based on your scenarios.

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();
  • Project wildcard filter
    Playwright command line flag now supports '*' wildcard when filtering by project.

    npx playwright test --project='*mobile*'
  • Other APIs

    • expect(callback).toPass({ timeout })
      The timeout can now be configured by expect.toPass.timeout option globally or in project config

    • electronApplication.on('console')
      electronApplication.on('console') event is emitted when Electron main process calls console API methods.

      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' }));
    • page.pdf() accepts two new options tagged and outline.

Breaking changes

Mixing the test instances in the same suite is no longer supported. Allowing it was an oversight as it makes reasoning about the semantics unnecessarily hard.

const test = baseTest.extend({ item: async ({}, use) => {} });
baseTest.describe('Admin user', () => {
  test('1', async ({ page, item }) => {});
  test('2', async ({ page, item }) => {});
});

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


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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title Update dependency @playwright/test to v1.35.1 Update dependency @playwright/test to v1.36.0 Jul 11, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from ff509c1 to 372fa10 Compare July 11, 2023 19:15
@renovate renovate bot changed the title Update dependency @playwright/test to v1.36.0 Update dependency @playwright/test to v1.36.1 Jul 14, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 372fa10 to f75e062 Compare July 14, 2023 21:21
@renovate renovate bot changed the title Update dependency @playwright/test to v1.36.1 Update dependency @playwright/test to v1.36.2 Jul 25, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from f75e062 to 9d94e12 Compare July 25, 2023 11:26
@renovate renovate bot changed the title Update dependency @playwright/test to v1.36.2 Update dependency @playwright/test to v1.37.0 Aug 11, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 9d94e12 to 892239a Compare August 11, 2023 01:54
@renovate renovate bot changed the title Update dependency @playwright/test to v1.37.0 Update dependency @playwright/test to v1.37.1 Aug 17, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 892239a to de03fea Compare August 17, 2023 21:11
@renovate renovate bot changed the title Update dependency @playwright/test to v1.37.1 Update dependency @playwright/test to v1.38.0 Sep 14, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from de03fea to 206a74c Compare September 14, 2023 00:18
@renovate renovate bot changed the title Update dependency @playwright/test to v1.38.0 Update dependency @playwright/test to v1.38.1 Sep 21, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 206a74c to 82a0e60 Compare September 21, 2023 22:17
@renovate renovate bot changed the title Update dependency @playwright/test to v1.38.1 Update dependency @playwright/test to v1.39.0 Oct 12, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 82a0e60 to 6a496e0 Compare October 12, 2023 00:28
@renovate renovate bot changed the title Update dependency @playwright/test to v1.39.0 Update dependency @playwright/test to v1.40.0 Nov 17, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 6a496e0 to 650e73c Compare November 17, 2023 02:05
@renovate renovate bot changed the title Update dependency @playwright/test to v1.40.0 Update dependency @playwright/test to v1.40.1 Nov 29, 2023
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 650e73c to a776435 Compare November 29, 2023 04:05
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from a776435 to 036419b Compare January 16, 2024 21:01
@renovate renovate bot changed the title Update dependency @playwright/test to v1.40.1 Update dependency @playwright/test to v1.41.0 Jan 16, 2024
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 036419b to 95911fe Compare January 20, 2024 01:55
@renovate renovate bot changed the title Update dependency @playwright/test to v1.41.0 Update dependency @playwright/test to v1.41.1 Jan 20, 2024
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 95911fe to fb40d5c Compare February 1, 2024 21:02
@renovate renovate bot changed the title Update dependency @playwright/test to v1.41.1 Update dependency @playwright/test to v1.41.2 Feb 1, 2024
@renovate renovate bot changed the title Update dependency @playwright/test to v1.41.2 Update dependency @playwright/test to v1.42.0 Feb 27, 2024
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 2 times, most recently from e261c0d to e9d512d Compare March 2, 2024 00:47
@renovate renovate bot changed the title Update dependency @playwright/test to v1.42.0 Update dependency @playwright/test to v1.42.1 Mar 2, 2024
@renovate renovate bot changed the title Update dependency @playwright/test to v1.46.0 Update dependency @playwright/test to v1.46.1 Aug 16, 2024
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 88078d2 to 2f41fff Compare September 5, 2024 22:52
@renovate renovate bot changed the title Update dependency @playwright/test to v1.46.1 Update dependency @playwright/test to v1.47.0 Sep 5, 2024
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 2f41fff to 5867115 Compare September 13, 2024 18:14
@renovate renovate bot changed the title Update dependency @playwright/test to v1.47.0 Update dependency @playwright/test to v1.47.1 Sep 13, 2024
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 5867115 to 646377a Compare September 20, 2024 18:20
@renovate renovate bot changed the title Update dependency @playwright/test to v1.47.1 Update dependency @playwright/test to v1.47.2 Sep 20, 2024
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 646377a to 034f0d4 Compare October 8, 2024 16:58
@renovate renovate bot changed the title Update dependency @playwright/test to v1.47.2 Update dependency @playwright/test to v1.48.0 Oct 8, 2024
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 034f0d4 to 09644bb Compare October 16, 2024 14:01
@renovate renovate bot changed the title Update dependency @playwright/test to v1.48.0 Update dependency @playwright/test to v1.48.1 Oct 16, 2024
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 09644bb to 6700691 Compare October 25, 2024 22:55
@renovate renovate bot changed the title Update dependency @playwright/test to v1.48.1 Update dependency @playwright/test to v1.48.2 Oct 25, 2024
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 6700691 to b522278 Compare November 18, 2024 21:46
@renovate renovate bot changed the title Update dependency @playwright/test to v1.48.2 Update dependency @playwright/test to v1.49.0 Nov 18, 2024
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from b522278 to de3b040 Compare December 10, 2024 05:05
@renovate renovate bot changed the title Update dependency @playwright/test to v1.49.0 Update dependency @playwright/test to v1.49.1 Dec 10, 2024
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from de3b040 to d60d0c5 Compare January 23, 2025 17:06
@renovate renovate bot changed the title Update dependency @playwright/test to v1.49.1 Update dependency @playwright/test to v1.50.0 Jan 23, 2025
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from d60d0c5 to aa320d8 Compare January 31, 2025 21:38
@renovate renovate bot changed the title Update dependency @playwright/test to v1.50.0 Update dependency @playwright/test to v1.50.1 Jan 31, 2025
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from aa320d8 to d290b06 Compare March 6, 2025 18:43
@renovate renovate bot changed the title Update dependency @playwright/test to v1.50.1 Update dependency @playwright/test to v1.51.0 Mar 6, 2025
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from d290b06 to 84447bf Compare March 17, 2025 23:34
@renovate renovate bot changed the title Update dependency @playwright/test to v1.51.0 Update dependency @playwright/test to v1.51.1 Mar 17, 2025
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 84447bf to 3970260 Compare April 17, 2025 18:59
@renovate renovate bot changed the title Update dependency @playwright/test to v1.51.1 Update dependency @playwright/test to v1.52.0 Apr 17, 2025
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 3970260 to 7f2dff4 Compare June 10, 2025 19:41
@renovate renovate bot changed the title Update dependency @playwright/test to v1.52.0 Update dependency @playwright/test to v1.53.0 Jun 10, 2025
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.

0 participants