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

Bump @playwright/test from 1.42.1 to 1.43.0 #420

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 8, 2024

Bumps @playwright/test from 1.42.1 to 1.43.0.

Release notes

Sourced from @​playwright/test's releases.

v1.43.0

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();

... (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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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)

@swissspidy swissspidy enabled auto-merge (squash) April 8, 2024 16:51
Copy link

github-actions bot commented Apr 8, 2024

Size Change: 0 B

Total Size: 3.04 MB

ℹ️ View Unchanged
Filename Size
build/100.js 83 kB
build/534.js 7.54 kB
build/699.js 2.36 MB
build/blurhash.worker.js 3.19 kB
build/canvas.worker.js 2.77 kB
build/chunk-ffmpeg.js 5.9 kB
build/chunk-selfie-segmentation.js 16.3 kB
build/dominant-color.worker.js 4.46 kB
build/ffmpeg.js 1.1 kB
build/heif.worker.js 424 kB
build/media-experiments-blocks-rtl.css 298 B
build/media-experiments-blocks.css 297 B
build/media-experiments-rtl.css 764 B
build/media-experiments.css 765 B
build/media-experiments.js 64.5 kB
build/pdf.js 564 B
build/subtitles.js 864 B
build/upload-requests-modal-rtl.css 267 B
build/upload-requests-modal.css 268 B
build/upload-requests-modal.js 801 B
build/view-upload-request-view-rtl.css 714 B
build/view-upload-request-view.css 716 B
build/view-upload-request.js 16.8 kB
build/vips.worker.js 42.1 kB

compressed-size-action

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/playwright/test-1.43.0 branch 3 times, most recently from e1bcef2 to 057683c Compare April 8, 2024 18:04
Bumps [@playwright/test](https://github.com/microsoft/playwright) from 1.42.1 to 1.43.0.
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.42.1...v1.43.0)

---
updated-dependencies:
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/playwright/test-1.43.0 branch from 057683c to 555f563 Compare April 8, 2024 18:15
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 15, 2024

Superseded by #426.

@dependabot dependabot bot closed this Apr 15, 2024
auto-merge was automatically disabled April 15, 2024 16:44

Pull request was closed

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/playwright/test-1.43.0 branch April 15, 2024 16:44
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