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

deps: update dependency playwright to v1.29.0 #874

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 22, 2022

Mend Renovate

This PR contains the following updates:

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

Release Notes

Microsoft/playwright

v1.29.0

Compare Source

New APIs
  • New method route.fetch() and new option json for route.fulfill():

    await page.route('**/api/settings', async route => {
      // Fetch original settings.
      const response = await route.fetch();
    
      // Force settings theme to a predefined value.
      const json = await response.json();
      json.theme = 'Solorized';
    
      // Fulfill with modified data.
      await route.fulfill({ json });
    });
  • New method locator.all() to iterate over all matching elements:

    // Check all checkboxes!
    const checkboxes = page.getByRole('checkbox');
    for (const checkbox of await checkboxes.all())
      await checkbox.check();
  • Retry blocks of code until all assertions pass:

    await expect(async () => {
      const response = await page.request.get('https://api.example.com');
      await expect(response).toBeOK();
    }).toPass();

    Read more in our documentation.

  • Automatically capture full page screenshot on test failure:

    // playwright.config.ts
    import type { PlaywrightTestConfig } from '@​playwright/test';
    
    const config: PlaywrightTestConfig = {
      use: {
        screenshot: {
          mode: 'only-on-failure',
          fullPage: true,
        }
      }
    };
    
    export default config;
Miscellaneous
Browser Versions
  • Chromium 109.0.5414.46
  • Mozilla Firefox 107.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 108
  • Microsoft Edge 108

v1.28.1

Compare Source

Highlights

This patch release includes the following bug fixes:

https://github.com/microsoft/playwright/issues/18928 - [BUG] Electron firstWindow times out after upgrading to 1.28.0https://github.com/microsoft/playwright/issues/189200 - [BUG] [expanded=false] in role selector returns elements without aria-expanded attribuhttps://github.com/microsoft/playwright/issues/18865865 - [BUG] regression in killing web server process in 1.28.0

Browser Versions

  • Chromium 108.0.5359.29
  • Mozilla Firefox 106.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 107
  • Microsoft Edge 107

v1.28.0: v1.28

Compare Source

Playwright Tools

  • Record at Cursor in VSCode. You can run the test, position the cursor at the end of the test and continue generating the test.
New VSCode Extension
  • Live Locators in VSCode. You can hover and edit locators in VSCode to get them highlighted in the opened browser.
  • Live Locators in CodeGen. Generate a locator for any element on the page using "Explore" tool.
Locator Explorer
  • Codegen and Trace Viewer Dark Theme. Automatically picked up from operating system settings.
Dark Theme
Test Runner
New APIs
Browser Versions
  • Chromium 108.0.5359.29
  • Mozilla Firefox 106.0
  • WebKit 16.4

This version was also tested against the following stable channels:

  • Google Chrome 107
  • Microsoft Edge 107

Configuration

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

🚦 Automerge: Enabled.

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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Nov 22, 2022
@renovate
Copy link
Contributor Author

renovate bot commented Nov 22, 2022

Branch automerge failure

This PR was configured for branch automerge. However, this is not possible, so it has been raised as a PR instead.


  • Branch has one or more failed status checks

@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 3 times, most recently from 9fc82c3 to 7a805d0 Compare November 23, 2022 19:11
@renovate renovate bot changed the title deps: update dependency playwright to v1.28.0 deps: update dependency playwright to v1.28.1 Nov 23, 2022
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 7 times, most recently from 71d2e92 to 63031b6 Compare November 30, 2022 04:01
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 12 times, most recently from 02c4833 to b0ce2a7 Compare December 7, 2022 19:39
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 5 times, most recently from 8897b54 to 714ad24 Compare December 9, 2022 02:08
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 2 times, most recently from 5c5a56f to ea222fc Compare December 9, 2022 14:16
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 7 times, most recently from 2163e9a to 0e19099 Compare December 12, 2022 06:17
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 10 times, most recently from 6b008b6 to 38b8754 Compare December 17, 2022 04:34
@renovate renovate bot changed the title deps: update dependency playwright to v1.28.1 deps: update dependency playwright to v1.29.0 Dec 17, 2022
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 2 times, most recently from 7593960 to e2076a7 Compare December 17, 2022 18:42
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from e2076a7 to 76c1400 Compare December 17, 2022 19:11
@cawa-93 cawa-93 closed this Dec 17, 2022
@renovate
Copy link
Contributor Author

renovate bot commented Dec 17, 2022

Renovate Ignore Notification

As this PR has been closed unmerged, Renovate will now ignore this update (1.29.0). You will still receive a PR once a newer version is released, so if you wish to permanently ignore this dependency, please add it to the ignoreDeps array of your renovate config.

If this PR was closed by mistake or you changed your mind, you can simply rename this PR and you will soon get a fresh replacement PR opened.

@renovate renovate bot deleted the renovate/playwright-monorepo branch December 17, 2022 20:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant