[Snyk] Upgrade playwright from 1.44.1 to 1.45.1 #779

Closed
opened 2026-04-05 16:22:58 +02:00 by MrUnknownDE · 0 comments
Owner

Originally created by @simlarsen on 7/26/2024

This PR was automatically created by Snyk using the credentials of a real user.


![snyk-top-banner](https://github.com/andygongea/OWASP-Benchmark/assets/818805/c518c423-16fe-447e-b67f-ad5a49b5d123)

Snyk has created this PR to upgrade playwright from 1.44.1 to 1.45.1.

ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.


  • The recommended version is 63 versions ahead of your current version.

  • The recommended version was released on 24 days ago.

Release notes
Package name: playwright
  • 1.45.1 - 2024-07-02

    Highlights

    #31473 - [REGRESSION]: Playwright raises an error ENOENT: no such file or directory, open 'test-results/.playwright-artifacts-0/hash.zip' with Electron
    #31442 - [REGRESSION]: Locators of elements changing from/to hidden have operations hanging when using --disable-web-security
    #31431 - [REGRESSION]: NewTab doesn't work properly with Chrome with --disable-web-security
    #31425 - [REGRESSION]: beforeEach hooks are not skipped when describe condition depends on fixtures
    #31491 - [REGRESSION]: @ playwright/experimental-ct-react doesn't work with VSCode extension and PNPM

    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
  • 1.45.1-beta-1721056413000 - 2024-07-15
  • 1.45.1-beta-1720807989000 - 2024-07-12
  • 1.45.1-beta-1719996498000 - 2024-07-03
  • 1.45.1-beta-1719941226000 - 2024-07-02
  • 1.45.0 - 2024-06-24

    Clock

    Utilizing the new Clock API allows to manipulate and control time within tests to verify time-related behavior. This API covers many common scenarios, including:

    • testing with predefined time;
    • keeping consistent time and timers;
    • monitoring inactivity;
    • ticking through time manually.
    // Pretend that the user closed the laptop lid and opened it again at 10am,
    // Pause the time once reached that point.
    await page.clock.pauseAt(new Date('2024-02-02T10:00:00'));

    // Assert the page state.
    await expect(page.getByTestId('current-time')).toHaveText('2/2/2024, 10:00:00 AM');

    // Close the laptop lid again and open it at 10:30am.
    await page.clock.fastForward('30:00');
    await expect(page.getByTestId('current-time')).toHaveText('2/2/2024, 10:30:00 AM');">

    // Initialize clock and let the page load naturally.
    await page.clock.install({ time: new Date('2024-02-02T08:00:00') });
    await page.goto('http://localhost:3333');

    // Pretend that the user closed the laptop lid and opened it again at 10am,
    // Pause the time once reached that point.
    await page.clock.pauseAt(new Date('2024-02-02T10:00:00'));

    // Assert the page state.
    await expect(page.getByTestId('current-time')).toHaveText('2/2/2024, 10:00:00 AM');

    // Close the laptop lid again and open it at 10:30am.
    await page.clock.fastForward('30:00');
    await expect(page.getByTestId('current-time')).toHaveText('2/2/2024, 10:30:00 AM');

    See the clock guide for more details.

    Test runner

    • New CLI option --fail-on-flaky-tests that sets exit code to 1 upon any flaky tests. Note that by default, the test runner exits with code 0 when all failed tests recovered upon a retry. With this option, the test run will fail in such case.

    • New enviroment variable PLAYWRIGHT_FORCE_TTY controls whether built-in list, line and dot reporters assume a live terminal. For example, this could be useful to disable tty behavior when your CI environment does not handle ANSI control sequences well. Alternatively, you can enable tty behavior even when to live terminal is present, if you plan to post-process the output and handle control sequences.

      Enable TTY features, assuming a terminal width 80

      PLAYWRIGHT_FORCE_TTY=80 npx playwright test">

      # Avoid TTY features that output ANSI control sequences
      PLAYWRIGHT_FORCE_TTY=0 npx playwright test

      # Enable TTY features, assuming a terminal width 80
      PLAYWRIGHT_FORCE_TTY=80 npx playwright test

    • New options testConfig.respectGitIgnore and testProject.respectGitIgnore control whether files matching .gitignore patterns are excluded when searching for tests.

    • New property timeout is now available for custom expect matchers. This property takes into account playwright.config.ts and expect.configure().

      export const expect = baseExpect.extend({
      async toHaveAmount(locator: Locator, expected: number, options?: { timeout?: number }) {
      // When no timeout option is specified, use the config timeout.
      const timeout = options?.timeout ?? this.timeout;
      // ... implement the assertion ...
      },
      });">
      import { expect as baseExpect } from '@ playwright/test';

      export const expect = baseExpect.extend({
      async toHaveAmount(locator: Locator, expected: number, options?: { timeout?: number }) {
      // When no timeout option is specified, use the config timeout.
      const timeout = options?.timeout ?? this.timeout;
      // ... implement the assertion ...
      },
      });

    Miscellaneous

    • Method locator.setInputFiles() now supports uploading a directory for <input type=file webkitdirectory> 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
  • 1.45.0-beta-1719854491000 - 2024-07-01
  • 1.45.0-beta-1719819889000 - 2024-07-01
  • 1.45.0-beta-1719505820000 - 2024-06-27
  • 1.45.0-beta-1719443776000 - 2024-06-26
  • 1.45.0-beta-1719257069000 - 2024-06-24
  • 1.45.0-beta-1719257053000 - 2024-06-24
  • 1.45.0-beta-1719253817000 - 2024-06-24
  • 1.45.0-beta-1718972438000 - 2024-06-21
  • 1.45.0-beta-1718813530000 - 2024-06-19
  • 1.45.0-beta-1718782041000 - 2024-06-19
  • 1.45.0-beta-1718733727000 - 2024-06-18
  • 1.45.0-beta-1718419432000 - 2024-06-15
  • 1.45.0-beta-1718411373000 - 2024-06-15
  • 1.45.0-alpha-2024-06-15 - 2024-06-15
  • 1.45.0-alpha-2024-06-14 - 2024-06-14
  • 1.45.0-alpha-2024-06-13 - 2024-06-13
  • 1.45.0-alpha-2024-06-12 - 2024-06-12
  • 1.45.0-alpha-2024-06-11 - 2024-06-11
  • 1.45.0-alpha-2024-06-10 - 2024-06-10
  • 1.45.0-alpha-2024-06-09 - 2024-06-09
  • 1.45.0-alpha-2024-06-08 - 2024-06-08
  • 1.45.0-alpha-2024-06-07 - 2024-06-07
  • 1.45.0-alpha-2024-06-06 - 2024-06-06
  • 1.45.0-alpha-2024-06-05 - 2024-06-05
  • 1.45.0-alpha-2024-06-04 - 2024-06-04
  • 1.45.0-alpha-2024-06-03 - 2024-06-03
  • 1.45.0-alpha-2024-06-02 - 2024-06-02
  • 1.45.0-alpha-2024-06-01 - 2024-06-01
  • 1.45.0-alpha-2024-05-31 - 2024-05-31
  • 1.45.0-alpha-2024-05-30 - 2024-05-30
  • 1.45.0-alpha-2024-05-29 - 2024-05-29
  • 1.45.0-alpha-2024-05-28 - 2024-05-28
  • 1.45.0-alpha-2024-05-27 - 2024-05-27
  • 1.45.0-alpha-2024-05-26 - 2024-05-26
  • 1.45.0-alpha-2024-05-25 - 2024-05-25
  • 1.45.0-alpha-2024-05-24 - 2024-05-24
  • 1.45.0-alpha-2024-05-23 - 2024-05-23
  • 1.45.0-alpha-2024-05-22 - 2024-05-22
  • 1.45.0-alpha-2024-05-21 - 2024-05-21
  • 1.45.0-alpha-2024-05-20 - 2024-05-20
  • 1.45.0-alpha-2024-05-19 - 2024-05-19
  • 1.45.0-alpha-2024-05-18 - 2024-05-18
  • 1.45.0-alpha-2024-05-17 - 2024-05-17
  • 1.45.0-alpha-2024-05-16 - 2024-05-16
  • 1.45.0-alpha-2024-05-15 - 2024-05-15
  • 1.45.0-alpha-2024-05-14 - 2024-05-14
  • 1.45.0-alpha-2024-05-13 - 2024-05-13
  • 1.45.0-alpha-2024-05-12 - 2024-05-12
  • 1.45.0-alpha-2024-05-11 - 2024-05-11
  • 1.45.0-alpha-2024-05-10 - 2024-05-10
  • 1.45.0-alpha-2024-05-09 - 2024-05-09
  • 1.45.0-alpha-2024-05-08 - 2024-05-08
  • 1.45.0-alpha-2024-05-07 - 2024-05-07
  • 1.45.0-alpha-2024-05-06 - 2024-05-06
  • 1.45.0-alpha-2024-04-30 - 2024-04-30
  • 1.45.0-alpha-1716491102000 - 2024-05-23
  • 1.45.0-alpha-1714760563000 - 2024-05-06
  • 1.44.1 - 2024-05-23

    Highlights

    #30779 - [REGRESSION]: When using video: 'on' with VSCode extension the browser got closed
    #30755 - [REGRESSION]: Electron launch with spaces inside executablePath didn't work
    #30770 - [REGRESSION]: Mask elements outside of viewport when creating fullscreen screenshots didn't work
    #30858 - [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
from playwright GitHub release notes

Important

  • Check the changes in this PR to ensure they won't cause issues with your project.
  • This PR was automatically created by Snyk using the credentials of a real user.

Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.

For more information:

*Originally created by @simlarsen on 7/26/2024* <p>This PR was automatically created by Snyk using the credentials of a real user.</p><br />![snyk-top-banner](https://github.com/andygongea/OWASP-Benchmark/assets/818805/c518c423-16fe-447e-b67f-ad5a49b5d123) <h3>Snyk has created this PR to upgrade playwright from 1.44.1 to 1.45.1.</h3> :information_source: Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project. <hr/> - The recommended version is **63 versions** ahead of your current version. - The recommended version was released on **24 days ago**. <details> <summary><b>Release notes</b></summary> <br/> <details> <summary>Package name: <b>playwright</b></summary> <ul> <li> <b>1.45.1</b> - <a href="https://github.com/microsoft/playwright/releases/tag/v1.45.1">2024-07-02</a></br><h3>Highlights</h3> <p><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2379382894" data-permission-text="Title is private" data-url="https://github.com/microsoft/playwright/issues/31473" data-hovercard-type="issue" data-hovercard-url="/microsoft/playwright/issues/31473/hovercard" href="https://github.com/microsoft/playwright/issues/31473">#31473</a> - [REGRESSION]: Playwright raises an error ENOENT: no such file or directory, open 'test-results/.playwright-artifacts-0/hash.zip' with Electron<br> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2374326184" data-permission-text="Title is private" data-url="https://github.com/microsoft/playwright/issues/31442" data-hovercard-type="issue" data-hovercard-url="/microsoft/playwright/issues/31442/hovercard" href="https://github.com/microsoft/playwright/issues/31442">#31442</a> - [REGRESSION]: Locators of elements changing from/to hidden have operations hanging when using <code>--disable-web-security</code><br> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2372254400" data-permission-text="Title is private" data-url="https://github.com/microsoft/playwright/issues/31431" data-hovercard-type="issue" data-hovercard-url="/microsoft/playwright/issues/31431/hovercard" href="https://github.com/microsoft/playwright/issues/31431">#31431</a> - [REGRESSION]: NewTab doesn't work properly with Chrome with <code>--disable-web-security</code><br> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2371324810" data-permission-text="Title is private" data-url="https://github.com/microsoft/playwright/issues/31425" data-hovercard-type="issue" data-hovercard-url="/microsoft/playwright/issues/31425/hovercard" href="https://github.com/microsoft/playwright/issues/31425">#31425</a> - [REGRESSION]: beforeEach hooks are not skipped when describe condition depends on fixtures<br> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2382063096" data-permission-text="Title is private" data-url="https://github.com/microsoft/playwright/issues/31491" data-hovercard-type="issue" data-hovercard-url="/microsoft/playwright/issues/31491/hovercard" href="https://github.com/microsoft/playwright/issues/31491">#31491</a> - [REGRESSION]: <code>@ playwright/experimental-ct-react</code> doesn't work with VSCode extension and PNPM</p> <h2>Browser Versions</h2> <ul> <li>Chromium 127.0.6533.5</li> <li>Mozilla Firefox 127.0</li> <li>WebKit 17.4</li> </ul> <p>This version was also tested against the following stable channels:</p> <ul> <li>Google Chrome 126</li> <li>Microsoft Edge 126</li> </ul> </li> <li> <b>1.45.1-beta-1721056413000</b> - 2024-07-15 </li> <li> <b>1.45.1-beta-1720807989000</b> - 2024-07-12 </li> <li> <b>1.45.1-beta-1719996498000</b> - 2024-07-03 </li> <li> <b>1.45.1-beta-1719941226000</b> - 2024-07-02 </li> <li> <b>1.45.0</b> - <a href="https://github.com/microsoft/playwright/releases/tag/v1.45.0">2024-06-24</a></br><h2>Clock</h2> <p>Utilizing the new <a href="https://playwright.dev/docs/api/class-clock" rel="nofollow">Clock</a> API allows to manipulate and control time within tests to verify time-related behavior. This API covers many common scenarios, including:</p> <ul> <li>testing with predefined time;</li> <li>keeping consistent time and timers;</li> <li>monitoring inactivity;</li> <li>ticking through time manually.</li> </ul> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="// Initialize clock and let the page load naturally. await page.clock.install({ time: new Date('2024-02-02T08:00:00') }); await page.goto('http://localhost:3333'); // Pretend that the user closed the laptop lid and opened it again at 10am, // Pause the time once reached that point. await page.clock.pauseAt(new Date('2024-02-02T10:00:00')); // Assert the page state. await expect(page.getByTestId('current-time')).toHaveText('2/2/2024, 10:00:00 AM'); // Close the laptop lid again and open it at 10:30am. await page.clock.fastForward('30:00'); await expect(page.getByTestId('current-time')).toHaveText('2/2/2024, 10:30:00 AM');"><pre><span class="pl-c">// Initialize clock and let the page load naturally.</span> <span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-c1">clock</span><span class="pl-kos">.</span><span class="pl-en">install</span><span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-c1">time</span>: <span class="pl-k">new</span> <span class="pl-v">Date</span><span class="pl-kos">(</span><span class="pl-s">'2024-02-02T08:00:00'</span><span class="pl-kos">)</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">goto</span><span class="pl-kos">(</span><span class="pl-s">'http://localhost:3333'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Pretend that the user closed the laptop lid and opened it again at 10am,</span> <span class="pl-c">// Pause the time once reached that point.</span> <span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-c1">clock</span><span class="pl-kos">.</span><span class="pl-en">pauseAt</span><span class="pl-kos">(</span><span class="pl-k">new</span> <span class="pl-v">Date</span><span class="pl-kos">(</span><span class="pl-s">'2024-02-02T10:00:00'</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Assert the page state.</span> <span class="pl-k">await</span> <span class="pl-en">expect</span><span class="pl-kos">(</span><span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">getByTestId</span><span class="pl-kos">(</span><span class="pl-s">'current-time'</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toHaveText</span><span class="pl-kos">(</span><span class="pl-s">'2/2/2024, 10:00:00 AM'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Close the laptop lid again and open it at 10:30am.</span> <span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-c1">clock</span><span class="pl-kos">.</span><span class="pl-en">fastForward</span><span class="pl-kos">(</span><span class="pl-s">'30:00'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">await</span> <span class="pl-en">expect</span><span class="pl-kos">(</span><span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">getByTestId</span><span class="pl-kos">(</span><span class="pl-s">'current-time'</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toHaveText</span><span class="pl-kos">(</span><span class="pl-s">'2/2/2024, 10:30:00 AM'</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p>See <a href="https://playwright.dev/docs/clock" rel="nofollow">the clock guide</a> for more details.</p> <h2>Test runner</h2> <ul> <li> <p>New CLI option <code>--fail-on-flaky-tests</code> that sets exit code to <code>1</code> upon any flaky tests. Note that by default, the test runner exits with code <code>0</code> when all failed tests recovered upon a retry. With this option, the test run will fail in such case.</p> </li> <li> <p>New enviroment variable <code>PLAYWRIGHT_FORCE_TTY</code> controls whether built-in <code>list</code>, <code>line</code> and <code>dot</code> reporters assume a live terminal. For example, this could be useful to disable tty behavior when your CI environment does not handle ANSI control sequences well. Alternatively, you can enable tty behavior even when to live terminal is present, if you plan to post-process the output and handle control sequences.</p> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# Avoid TTY features that output ANSI control sequences PLAYWRIGHT_FORCE_TTY=0 npx playwright test # Enable TTY features, assuming a terminal width 80 PLAYWRIGHT_FORCE_TTY=80 npx playwright test"><pre><span class="pl-c"><span class="pl-c">#</span> Avoid TTY features that output ANSI control sequences</span> PLAYWRIGHT_FORCE_TTY=0 npx playwright <span class="pl-c1">test</span> <span class="pl-c"><span class="pl-c">#</span> Enable TTY features, assuming a terminal width 80</span> PLAYWRIGHT_FORCE_TTY=80 npx playwright <span class="pl-c1">test</span></pre></div> </li> <li> <p>New options <a href="https://playwright.dev/docs/api/class-testconfig#test-config-respect-git-ignore" rel="nofollow">testConfig.respectGitIgnore</a> and <a href="https://playwright.dev/docs/api/class-testproject#test-project-respect-git-ignore" rel="nofollow">testProject.respectGitIgnore</a> control whether files matching <code>.gitignore</code> patterns are excluded when searching for tests.</p> </li> <li> <p>New property <code>timeout</code> is now available for custom expect matchers. This property takes into account <code>playwright.config.ts</code> and <code>expect.configure()</code>.</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import { expect as baseExpect } from '@ playwright/test'; export const expect = baseExpect.extend({ async toHaveAmount(locator: Locator, expected: number, options?: { timeout?: number }) { // When no timeout option is specified, use the config timeout. const timeout = options?.timeout ?? this.timeout; // ... implement the assertion ... }, });"><pre><span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">expect</span> <span class="pl-k">as</span> <span class="pl-s1">baseExpect</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'@ playwright/test'</span><span class="pl-kos">;</span> <span class="pl-k">export</span> <span class="pl-k">const</span> <span class="pl-s1">expect</span> <span class="pl-c1">=</span> <span class="pl-s1">baseExpect</span><span class="pl-kos">.</span><span class="pl-en">extend</span><span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-k">async</span> <span class="pl-en">toHaveAmount</span><span class="pl-kos">(</span><span class="pl-s1">locator</span>: <span class="pl-smi">Locator</span><span class="pl-kos">,</span> <span class="pl-s1">expected</span>: <span class="pl-smi">number</span><span class="pl-kos">,</span> <span class="pl-s1">options</span>?: <span class="pl-kos">{</span> <span class="pl-c1">timeout</span>?: <span class="pl-smi">number</span> <span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-c">// When no timeout option is specified, use the config timeout.</span> <span class="pl-k">const</span> <span class="pl-s1">timeout</span> <span class="pl-c1">=</span> <span class="pl-s1">options</span><span class="pl-kos">?.</span><span class="pl-c1">timeout</span> <span class="pl-c1">??</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">timeout</span><span class="pl-kos">;</span> <span class="pl-c">// ... implement the assertion ...</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> </li> </ul> <h2>Miscellaneous</h2> <ul> <li> <p>Method <a href="https://playwright.dev/docs/api/class-locator#locator-set-input-files" rel="nofollow">locator.setInputFiles()</a> now supports uploading a directory for <code>&lt;input type=file webkitdirectory&gt;</code> elements.</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="await page.getByLabel('Upload directory').setInputFiles(path.join(__dirname, 'mydir'));"><pre><span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">getByLabel</span><span class="pl-kos">(</span><span class="pl-s">'Upload directory'</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">setInputFiles</span><span class="pl-kos">(</span><span class="pl-s1">path</span><span class="pl-kos">.</span><span class="pl-en">join</span><span class="pl-kos">(</span><span class="pl-s1">__dirname</span><span class="pl-kos">,</span> <span class="pl-s">'mydir'</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> </li> <li> <p>Multiple methods like <a href="https://playwright.dev/docs/api/class-locator#locator-click" rel="nofollow">locator.click()</a> or <a href="https://playwright.dev/docs/api/class-locator#locator-press" rel="nofollow">locator.press()</a> now support a <code>ControlOrMeta</code> modifier key. This key maps to <code>Meta</code> on macOS and maps to <code>Control</code> on Windows and Linux.</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="// Press the common keyboard shortcut Control+S or Meta+S to trigger a &quot;Save&quot; operation. await page.keyboard.press('ControlOrMeta+S');"><pre><span class="pl-c">// Press the common keyboard shortcut Control+S or Meta+S to trigger a "Save" operation.</span> <span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-c1">keyboard</span><span class="pl-kos">.</span><span class="pl-en">press</span><span class="pl-kos">(</span><span class="pl-s">'ControlOrMeta+S'</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> </li> <li> <p>New property <code>httpCredentials.send</code> in <a href="https://playwright.dev/docs/api/class-apirequest#api-request-new-context" rel="nofollow">apiRequest.newContext()</a> that allows to either always send the <code>Authorization</code> header or only send it in response to <code>401 Unauthorized</code>.</p> </li> <li> <p>New option <code>reason</code> in <a href="https://playwright.dev/docs/api/class-apirequestcontext#api-request-context-dispose" rel="nofollow">apiRequestContext.dispose()</a> that will be included in the error message of ongoing operations interrupted by the context disposal.</p> </li> <li> <p>New option <code>host</code> in <a href="https://playwright.dev/docs/api/class-browsertype#browser-type-launch-server" rel="nofollow">browserType.launchServer()</a> allows to accept websocket connections on a specific address instead of unspecified <code>0.0.0.0</code>.</p> </li> <li> <p>Playwright now supports Chromium, Firefox and WebKit on Ubuntu 24.04.</p> </li> <li> <p>v1.45 is the last release to receive WebKit update for macOS 12 Monterey. Please update macOS to keep using the latest WebKit.</p> </li> </ul> <h2>Browser Versions</h2> <ul> <li>Chromium 127.0.6533.5</li> <li>Mozilla Firefox 127.0</li> <li>WebKit 17.4</li> </ul> <p>This version was also tested against the following stable channels:</p> <ul> <li>Google Chrome 126</li> <li>Microsoft Edge 126</li> </ul> </li> <li> <b>1.45.0-beta-1719854491000</b> - 2024-07-01 </li> <li> <b>1.45.0-beta-1719819889000</b> - 2024-07-01 </li> <li> <b>1.45.0-beta-1719505820000</b> - 2024-06-27 </li> <li> <b>1.45.0-beta-1719443776000</b> - 2024-06-26 </li> <li> <b>1.45.0-beta-1719257069000</b> - 2024-06-24 </li> <li> <b>1.45.0-beta-1719257053000</b> - 2024-06-24 </li> <li> <b>1.45.0-beta-1719253817000</b> - 2024-06-24 </li> <li> <b>1.45.0-beta-1718972438000</b> - 2024-06-21 </li> <li> <b>1.45.0-beta-1718813530000</b> - 2024-06-19 </li> <li> <b>1.45.0-beta-1718782041000</b> - 2024-06-19 </li> <li> <b>1.45.0-beta-1718733727000</b> - 2024-06-18 </li> <li> <b>1.45.0-beta-1718419432000</b> - 2024-06-15 </li> <li> <b>1.45.0-beta-1718411373000</b> - 2024-06-15 </li> <li> <b>1.45.0-alpha-2024-06-15</b> - 2024-06-15 </li> <li> <b>1.45.0-alpha-2024-06-14</b> - 2024-06-14 </li> <li> <b>1.45.0-alpha-2024-06-13</b> - 2024-06-13 </li> <li> <b>1.45.0-alpha-2024-06-12</b> - 2024-06-12 </li> <li> <b>1.45.0-alpha-2024-06-11</b> - 2024-06-11 </li> <li> <b>1.45.0-alpha-2024-06-10</b> - 2024-06-10 </li> <li> <b>1.45.0-alpha-2024-06-09</b> - 2024-06-09 </li> <li> <b>1.45.0-alpha-2024-06-08</b> - 2024-06-08 </li> <li> <b>1.45.0-alpha-2024-06-07</b> - 2024-06-07 </li> <li> <b>1.45.0-alpha-2024-06-06</b> - 2024-06-06 </li> <li> <b>1.45.0-alpha-2024-06-05</b> - 2024-06-05 </li> <li> <b>1.45.0-alpha-2024-06-04</b> - 2024-06-04 </li> <li> <b>1.45.0-alpha-2024-06-03</b> - 2024-06-03 </li> <li> <b>1.45.0-alpha-2024-06-02</b> - 2024-06-02 </li> <li> <b>1.45.0-alpha-2024-06-01</b> - 2024-06-01 </li> <li> <b>1.45.0-alpha-2024-05-31</b> - 2024-05-31 </li> <li> <b>1.45.0-alpha-2024-05-30</b> - 2024-05-30 </li> <li> <b>1.45.0-alpha-2024-05-29</b> - 2024-05-29 </li> <li> <b>1.45.0-alpha-2024-05-28</b> - 2024-05-28 </li> <li> <b>1.45.0-alpha-2024-05-27</b> - 2024-05-27 </li> <li> <b>1.45.0-alpha-2024-05-26</b> - 2024-05-26 </li> <li> <b>1.45.0-alpha-2024-05-25</b> - 2024-05-25 </li> <li> <b>1.45.0-alpha-2024-05-24</b> - 2024-05-24 </li> <li> <b>1.45.0-alpha-2024-05-23</b> - 2024-05-23 </li> <li> <b>1.45.0-alpha-2024-05-22</b> - 2024-05-22 </li> <li> <b>1.45.0-alpha-2024-05-21</b> - 2024-05-21 </li> <li> <b>1.45.0-alpha-2024-05-20</b> - 2024-05-20 </li> <li> <b>1.45.0-alpha-2024-05-19</b> - 2024-05-19 </li> <li> <b>1.45.0-alpha-2024-05-18</b> - 2024-05-18 </li> <li> <b>1.45.0-alpha-2024-05-17</b> - 2024-05-17 </li> <li> <b>1.45.0-alpha-2024-05-16</b> - 2024-05-16 </li> <li> <b>1.45.0-alpha-2024-05-15</b> - 2024-05-15 </li> <li> <b>1.45.0-alpha-2024-05-14</b> - 2024-05-14 </li> <li> <b>1.45.0-alpha-2024-05-13</b> - 2024-05-13 </li> <li> <b>1.45.0-alpha-2024-05-12</b> - 2024-05-12 </li> <li> <b>1.45.0-alpha-2024-05-11</b> - 2024-05-11 </li> <li> <b>1.45.0-alpha-2024-05-10</b> - 2024-05-10 </li> <li> <b>1.45.0-alpha-2024-05-09</b> - 2024-05-09 </li> <li> <b>1.45.0-alpha-2024-05-08</b> - 2024-05-08 </li> <li> <b>1.45.0-alpha-2024-05-07</b> - 2024-05-07 </li> <li> <b>1.45.0-alpha-2024-05-06</b> - 2024-05-06 </li> <li> <b>1.45.0-alpha-2024-04-30</b> - 2024-04-30 </li> <li> <b>1.45.0-alpha-1716491102000</b> - 2024-05-23 </li> <li> <b>1.45.0-alpha-1714760563000</b> - 2024-05-06 </li> <li> <b>1.44.1</b> - <a href="https://github.com/microsoft/playwright/releases/tag/v1.44.1">2024-05-23</a></br><h3>Highlights</h3> <p><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2294870538" data-permission-text="Title is private" data-url="https://github.com/microsoft/playwright/issues/30779" data-hovercard-type="issue" data-hovercard-url="/microsoft/playwright/issues/30779/hovercard" href="https://github.com/microsoft/playwright/issues/30779">#30779</a> - [REGRESSION]: When using <code>video: 'on'</code> with VSCode extension the browser got closed<br> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2291336706" data-permission-text="Title is private" data-url="https://github.com/microsoft/playwright/issues/30755" data-hovercard-type="issue" data-hovercard-url="/microsoft/playwright/issues/30755/hovercard" href="https://github.com/microsoft/playwright/issues/30755">#30755</a> - [REGRESSION]: Electron launch with spaces inside executablePath didn't work<br> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2293790544" data-permission-text="Title is private" data-url="https://github.com/microsoft/playwright/issues/30770" data-hovercard-type="issue" data-hovercard-url="/microsoft/playwright/issues/30770/hovercard" href="https://github.com/microsoft/playwright/issues/30770">#30770</a> - [REGRESSION]: Mask elements outside of viewport when creating fullscreen screenshots didn't work<br> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2301318884" data-permission-text="Title is private" data-url="https://github.com/microsoft/playwright/issues/30858" data-hovercard-type="issue" data-hovercard-url="/microsoft/playwright/issues/30858/hovercard" href="https://github.com/microsoft/playwright/issues/30858">#30858</a> - [REGRESSION]: ipv6 got shown instead of localhost in show-trace/show-report</p> <h2>Browser Versions</h2> <ul> <li>Chromium 125.0.6422.14</li> <li>Mozilla Firefox 125.0.1</li> <li>WebKit 17.4</li> </ul> <p>This version was also tested against the following stable channels:</p> <ul> <li>Google Chrome 124</li> <li>Microsoft Edge 124</li> </ul> </li> </ul> from <a href="https://github.com/microsoft/playwright/releases">playwright GitHub release notes</a> </details> </details> --- > [!IMPORTANT] > > - Check the changes in this PR to ensure they won't cause issues with your project. > - This PR was automatically created by Snyk using the credentials of a real user. --- **Note:** _You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs._ **For more information:** <img src="https://api.segment.io/v1/pixel/track?data=eyJ3cml0ZUtleSI6InJyWmxZcEdHY2RyTHZsb0lYd0dUcVg4WkFRTnNCOUEwIiwiYW5vbnltb3VzSWQiOiJhZWZlN2Q4NS01N2M2LTQ1ZDgtYmVkNS1iMWQ1ZTRlM2RlYjQiLCJldmVudCI6IlBSIHZpZXdlZCIsInByb3BlcnRpZXMiOnsicHJJZCI6ImFlZmU3ZDg1LTU3YzYtNDVkOC1iZWQ1LWIxZDVlNGUzZGViNCJ9fQ==" width="0" height="0"/> > - 🧐 [View latest project report](https://app.snyk.io/org/oneuptime-RsC2nshvQ2Vnr35jHvMnMP/project/49c81d9c-12c2-4e8e-b9e8-72f98b1b595c?utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr) > - 📜 [Customise PR templates](https://docs.snyk.io/scan-using-snyk/pull-requests/snyk-fix-pull-or-merge-requests/customize-pr-templates) > - 🛠 [Adjust upgrade PR settings](https://app.snyk.io/org/oneuptime-RsC2nshvQ2Vnr35jHvMnMP/project/49c81d9c-12c2-4e8e-b9e8-72f98b1b595c/settings/integration?utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr) > - 🔕 [Ignore this dependency or unsubscribe from future upgrade PRs](https://app.snyk.io/org/oneuptime-RsC2nshvQ2Vnr35jHvMnMP/project/49c81d9c-12c2-4e8e-b9e8-72f98b1b595c/settings/integration?pkg&#x3D;playwright&amp;utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr#auto-dep-upgrades) <!--- (snyk:metadata:{"customTemplate":{"variablesUsed":[],"fieldsUsed":[]},"dependencies":[{"name":"playwright","from":"1.44.1","to":"1.45.1"}],"env":"prod","hasFixes":false,"isBreakingChange":false,"isMajorUpgrade":false,"issuesToFix":[],"prId":"aefe7d85-57c6-45d8-bed5-b1d5e4e3deb4","prPublicId":"aefe7d85-57c6-45d8-bed5-b1d5e4e3deb4","packageManager":"npm","priorityScoreList":[],"projectPublicId":"49c81d9c-12c2-4e8e-b9e8-72f98b1b595c","projectUrl":"https://app.snyk.io/org/oneuptime-RsC2nshvQ2Vnr35jHvMnMP/project/49c81d9c-12c2-4e8e-b9e8-72f98b1b595c?utm_source=github&utm_medium=referral&page=upgrade-pr","prType":"upgrade","templateFieldSources":{"branchName":"default","commitMessage":"default","description":"default","title":"default"},"templateVariants":[],"type":"auto","upgrade":[],"upgradeInfo":{"versionsDiff":63,"publishedDate":"2024-07-02T17:29:17.295Z"},"vulns":[]}) --->
Sign in to join this conversation.
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github/oneuptime#779