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 playwright #29279

Merged
merged 1 commit into from Apr 26, 2024
Merged

chore(deps): update playwright #29279

merged 1 commit into from Apr 26, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 5, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@axe-core/playwright 4.8.5 -> 4.9.0 age adoption passing confidence devDependencies minor
@playwright/test (source) 1.42.1 -> 1.43.1 age adoption passing confidence devDependencies minor
mcr.microsoft.com/playwright v1.42.1 -> v1.43.1 age adoption passing confidence final minor

Release Notes

dequelabs/axe-core-npm (@​axe-core/playwright)

v4.9.0

Compare Source

Bug Fixes
Features

4.8.5 (2024-02-08)

Bug Fixes

4.8.4 (2024-01-23)

Bug Fixes
  • webdriverjs: use new headless argument to fix selenium-webdriver@4.17.0 breaking release (#​992) (0daba98)

4.8.3 (2024-01-09)

Bug Fixes
Reverts

4.8.2 (2023-11-30)

Bug Fixes

4.8.1 (2023-10-11)

Bug Fixes
Features
microsoft/playwright (@​playwright/test)

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

Configuration

📅 Schedule: Branch creation - "every weekday before 11am" (UTC), Automerge - At any time (no schedule defined).

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

Rebasing: Never, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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 requested a review from a team as a code owner April 5, 2024 01:37
@renovate renovate bot requested review from sean-perkins and removed request for a team April 5, 2024 01:37
@github-actions github-actions bot added the package: core @ionic/core package label Apr 5, 2024
@liamdebeasi
Copy link
Contributor

FYI this change is wrong. It should be bumping the package-lock.json file too. I thought

matchDatasources: ["npm"],
matchPackagePatterns: ["@playwright/test", "@axe-core/playwright"],
groupName: "playwright",
matchFileNames: [
"core/package.json"
]
},
{
matchDatasources: ["docker"],
matchPackageNames: ["mcr.microsoft.com/playwright"],
groupName: "playwright",
matchFileNames: [
"core/Dockerfile"
],
versioning: "semver"
would do the trick, but maybe not?

@renovate renovate bot changed the title chore(deps): update mcr.microsoft.com/playwright docker tag to v1.43.0 chore(deps): update playwright Apr 8, 2024
@liamdebeasi
Copy link
Contributor

liamdebeasi commented Apr 8, 2024

Forcing renovate to re-run seemed to fix the issue 🤔 Now the package-lock.json is being updated correctly.

Copy link

vercel bot commented Apr 15, 2024

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

Name Status Preview Comments Updated (UTC)
ionic-framework ✅ Ready (Inspect) Visit Preview 💬 Add feedback Apr 26, 2024 8:26pm

@sean-perkins sean-perkins added this pull request to the merge queue Apr 26, 2024
Merged via the queue into main with commit c4b98ff Apr 26, 2024
47 checks passed
@sean-perkins sean-perkins deleted the renovate/playwright branch April 26, 2024 20:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
package: core @ionic/core package
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants