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

Update dependency playwright to v1.14.0 #1440

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 11, 2021

WhiteSource Renovate

This PR contains the following updates:

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

Release Notes

Microsoft/playwright

v1.14.0

Compare Source

🎭 Playwright Library

⚡️ New "strict" mode

Selector ambiguity is a common problem in automation testing. "strict" mode
ensures that your selector points to a single element and throws otherwise.

Pass strict: true into your action calls to opt in.

// This will throw if you have more than one button!
await page.click('button', { strict: true });
📍 New Locators API

Locator represents a view to the element(s) on the page. It captures the logic sufficient to retrieve the element at any given moment.

The difference between the Locator and ElementHandle is that the latter points to a particular element, while Locator captures the logic of how to retrieve that element.

Also, locators are "strict" by default!

const locator = page.locator('button');
await locator.click();

Learn more in the documentation.

🧩 Experimental React and Vue selector engines

React and Vue selectors allow selecting elements by its component name and/or property values. The syntax is very similar to attribute selectors and supports all attribute selector operators.

await page.click('_react=SubmitButton[enabled=true]');
await page.click('_vue=submit-button[enabled=true]');

Learn more in the react selectors documentation and the vue selectors documentation.

✨ New nth and visible selector engines
  • nth selector engine is equivalent to the :nth-match pseudo class, but could be combined with other selector engines.
  • visible selector engine is equivalent to the :visible pseudo class, but could be combined with other selector engines.
// select the first button among all buttons
await button.click('button >> nth=0');
// or if you are using locators, you can use first(), nth() and last()
await page.locator('button').first().click();

// click a visible button
await button.click('button >> visible=true');

🎭 Playwright Test

✅ Web-First Assertions

expect now supports lots of new web-first assertions.

Consider the following example:

await expect(page.locator('.status')).toHaveText('Submitted');

Playwright Test will be re-testing the node with the selector .status until fetched Node has the "Submitted" text. It will be re-fetching the node and checking it over and over, until the condition is met or until the timeout is reached. You can either pass this timeout or configure it once via the testProject.expect value in test config.

By default, the timeout for assertions is not set, so it'll wait forever, until the whole test times out.

List of all new assertions:

⛓ Serial mode with describe.serial

Declares a group of tests that should always be run serially. If one of the tests fails, all subsequent tests are skipped. All tests in a group are retried together.

test.describe.serial('group', () => {
  test('runs first', async ({ page }) => { /* ... */ });
  test('runs second', async ({ page }) => { /* ... */ });
});

Learn more in the documentation.

🐾 Steps API with test.step

Split long tests into multiple steps using test.step() API:

import { test, expect } from '@​playwright/test';

test('test', async ({ page }) => {
  await test.step('Log in', async () => {
    // ...
  });
  await test.step('news feed', async () => {
    // ...
  });
});

Step information is exposed in reporters API.

🌎 Launch web server before running tests

To launch a server during the tests, use the webServer option in the configuration file. The server will wait for a given port to be available before running the tests, and the port will be passed over to Playwright as a baseURL when creating a context.

// playwright.config.ts
import { PlaywrightTestConfig } from '@​playwright/test';
const config: PlaywrightTestConfig = {
  webServer: {
    command: 'npm run start', // command to launch
    port: 3000, // port to await for 
    timeout: 120 * 1000, 
    reuseExistingServer: !process.env.CI,
  },
};
export default config;

Learn more in the documentation.

Browser Versions

  • Chromium 94.0.4595.0
  • Mozilla Firefox 91.0
  • WebKit 15.0

This version of Playwright was also tested against the following stable channels:

  • Google Chrome 92
  • Microsoft Edge 92

v1.13.1

Compare Source

Highlights

This patch includes bug fixes for the following issues:

#​7800 - [Bug]: empty screen when opening trace.zip
#​7785 - [Bug]: Channel installation requires curl/wget on the system
#​7746 - [Bug]: global use is not working to launch firefox or webkit
#​7849 - [Bug]: Setting the current shard through config uses n+1 instead

Browser Versions

  • Chromium 93.0.4576.0
  • Mozilla Firefox 90.0
  • WebKit 14.2

v1.13.0

Compare Source

Playwright Test

Playwright

  • 🖖 Programmatic drag-and-drop support via the [page.dragAndDrop()][page.dragAndDrop()] API.
  • 🔎 Enhanced HAR with body sizes for requests and responses. Use via recordHar option in [browser.newContext()][browser.newContext()].

Tools

  • Playwright Trace Viewer now shows parameters, returned values and console.log() calls.
  • Playwright Inspector can generate Playwright Test tests.

New and Overhauled Guides

Browser Versions

  • Chromium 93.0.4576.0
  • Mozilla Firefox 90.0
  • WebKit 14.2

New Playwright APIs

  • new baseURL option in [browser.newContext()][browser.newContext()] and [browser.newPage()][browser.newPage()]
  • [response.securityDetails()][response.securityDetails()] and [response.serverAddr()][response.serverAddr()]
  • [page.dragAndDrop()][page.dragAndDrop()] and [frame.dragAndDrop()][frame.dragAndDrop()]
  • [download.cancel()][download.cancel()]
  • [page.inputValue()][page.inputValue()], [frame.inputValue()][frame.inputValue()] and [elementHandle.inputValue()][elementHandle.inputValue()]
  • new force option in [page.fill()][page.fill()], [frame.fill()][frame.fill()], and [elementHandle.fill()][elementHandle.fill()]
  • new force option in [page.selectOption()][page.selectOption()], [frame.selectOption()][frame.selectOption()], and [elementHandle.selectOption()][elementHandle.selectOption()]

v1.12.3

Compare Source

Highlights

This patch release includes bug fixes for the following issues:

#​7085 - [BUG] Traceviewer screens are not recorded well when using constructable stylesheets
#​7093 - Folder for a test-case is getting generated in test-results even if Test Case Passes when properties are given on Failure
#​7099 - [test-runner] Missing types for the expect library
#​7124 - [Test Runner] config.outputDir must be an absolute path
#​7141 - [Feature] Options for video resolution
#​7163 - [Test runner] artifacts are removed
#​7223 - [BUG] test-runner viewport can't be null
#​7284 - [BUG] incorrect @​playwright/test typings for toMatchSnapshot/toMatchInlineSnapshot/etc
#​7304 - [BUG] Snapshots are not captured if there is an animation at the beginning
#​7326 - [BUG] When PW timeouts, last trace action does not get collected[BUG] When PW timeouts, last trace action does not get collected

Browser Versions

  • Chromium 93.0.4530.0
  • Mozilla Firefox 89.0
  • WebKit 14.2

This version of Playwright was also tested against the following stable channels:

  • Google Chrome 91
  • Microsoft Edge 91

v1.12.2

Compare Source

Highlights

This patch release includes bugfixes for the following issues:

  • #​7015 - [BUG] Firefox: strange undefined toJSON property on JS objects
  • #​7004 - [test runner] Error: Error while reading global-setup.ts: Cannot find module 'global-setup.ts'
  • #​7048 - [BUG] Dialogs cannot be dismissed if tracing is on in Chromium or Webkit
  • #​7058 - [BUG] Getting no video frame error for mobile chrome
  • #​7020 - [Feature] Codegen should be able to emit @​playwright/test syntax

Browser Versions

  • Chromium 93.0.4530.0
  • Mozilla Firefox 89.0
  • WebKit 14.2

This version of Playwright was also tested against the following stable channels:

  • Google Chrome 91
  • Microsoft Edge 91

v1.12.1

Compare Source

Highlights

This patch includes bug fixes for the following issues:

#​6984 - slowMo does not exist in type 'Fixtures<{}, {}, PlaywrightTestOptions, PlaywrightWorkerOptions>'
#​6982 - [trace viewer] srcset sanitization removes space between values, hence breaks the links
#​6981 - [BUG] Getting "Please install @​playwright/test package to use Playwright Test."

Browser Versions

  • Chromium 93.0.4530.0
  • Mozilla Firefox 89.0
  • WebKit 14.2

This version of Playwright was also tested against the following stable channels:

  • Google Chrome 91
  • Microsoft Edge 91

v1.12.0

Compare Source

⚡️ Introducing Playwright Test

Playwright Test is a new test runner built from scratch by Playwright team specifically to accommodate end-to-end testing needs:

  • Run tests across all browsers.
  • Execute tests in parallel.
  • Enjoy context isolation and sensible defaults out of the box.
  • Capture traces, videos, screenshots and other artifacts on failure.
  • Infinitely extensible with fixtures.

Installation:

npm i -D @&#8203;playwright/test

Simple test tests/foo.spec.ts:

import { test, expect } from '@&#8203;playwright/test';

test('basic test', async ({ page }) => {
  await page.goto('https://playwright.dev/');
  const name = await page.innerText('.navbar__title');
  expect(name).toBe('Playwright');
});

Running:

npx playwright test

👉 Read more in testrunner documentation.

🧟‍♂️ Introducing Playwright Trace & TraceViewer

Playwright TraceViewer is a new GUI tool that helps exploring recorded Playwright traces after the script ran. Playwright traces let you examine:

  • page DOM before and after each Playwright action
  • page rendering before and after each Playwright action
  • browse network during script execution

Traces are recorded using the new [browserContext.tracing][browserContext.tracing] API:

const browser = await chromium.launch();
const context = await browser.newContext();

// Start tracing before creating / navigating a page.
await context.tracing.start({ screenshots: true, snapshots: true });

const page = await context.newPage();
await page.goto('https://playwright.dev');

// Stop tracing and export it into a zip archive.
await context.tracing.stop({ path: 'trace.zip' });

Traces are examined later with the Playwright CLI:

npx playwright show-trace trace.zip

That will open the following GUI:

image

👉 Read more in trace viewer documentation.


Browser Versions

  • Chromium 93.0.4530.0
  • Mozilla Firefox 89.0
  • WebKit 14.2

This version of Playwright was also tested against the following stable channels:

  • Google Chrome 91
  • Microsoft Edge 91

New APIs

  • reducedMotion option in [page.emulateMedia()][page.emulateMedia()], [browserType.launchPersistentContext()][browserType.launchPersistentContext()], [browser.newContext()][browser.newContext()] and [browser.newPage()][browser.newPage()]
  • [browserContext.on('request')][browserContext.on('request')]
  • [browserContext.on('requestfailed')][browserContext.on('requestfailed')]
  • [browserContext.on('requestfinished')][browserContext.on('requestfinished')]
  • [browserContext.on('response')][browserContext.on('response')]
  • tracesDir option in [browserType.launch()][browserType.launch()] and [browserType.launchPersistentContext()][browserType.launchPersistentContext()]
  • new [browserContext.tracing][browserContext.tracing] API namespace
  • new [download.page()][download.page()] method
  • new options in [electron.launch()][electron.launch()]:
    • acceptDownloads
    • bypassCSP
    • colorScheme
    • extraHTTPHeaders
    • geolocation
    • httpCredentials
Issues Closed (41)

#​1094 - [Feature] drag and drop
#​3320 - [Feature] Emulate reduced motion media query
#​4054 - [REGRESSION]: chromium.connect does not work with vanilla CDP servers anymore
#​5189 - [Bug] Codegen generates goto for page click
#​4535 - [Feature] page.waitForResponse support for async predicate function
#​4704 - [BUG] Unable to upload big file on firefox.
#​4752 - [Feature] export the screenshot options type
#​5136 - [BUG] Yarn install (yarn 2) does not install chromium from time to time.
#​5151 - [Question] Playwright + Firefox: How to disable download prompt and allows it to save by default?
#​5446 - [BUG] Use up to date Chromium version in device User-Agents
#​5501 - [BUG] Can't run Playwright in Nix
#​5510 - [Feature] Improve documentation, document returned type for all methods
#​5537 - [BUG] webkit reports incorrect download url
#​5542 - [BUG] HTML response is null on requestfinished when opening popup
#​5617 - [BUG] [Codegen] Page click recorded as click + goto
#​5695 - [BUG] Uploading executable file in firefox browser
#​5753 - [Question] - Page.click fails
#​5775 - [Question] Firefox Error: NS_BINDING_ABORTED [Question]
#​5947 - [Question] about downloads with launchPersistentContext
#​5962 - [BUG?] Download promises don't resolve when using Chromium instead of Firefox in headful mode
#​6026 - [BUG] Node.js 16 results in DeprecationWarning: Use of deprecated folder mapping "./" in the "exports" field with file import
#​6137 - Chromium Issue while loading a page
#​6239 - [BUG] Blank screenshot saved after test failure in CI
#​6240 - [Question] Can't wait for an element to be visible when it is overlapped with other elements in frontend
#​6264 - [BUG?] Mouse actions produce different result depending on slowMo setting
#​6340 - [Feature] Capture network requests on BrowserContext
#​6373 - Stream or capture Video into buffer [Question]
#​6390 - [devops] workaround Chromium windows issues with swiftshader
#​6403 - [BUG] Chromium - Playwright not intercepting importScripts requests in WebWorker
#​6415 - [BUG] Browsers will not start in GitLab pipeline
#​6431 - [BUG] Device emulation not working with CLI
#​6439 - [BUG] screencast tests fail on Mac10.14
#​6447 - [Question] How to use map function in $
#​6453 - [BUG] Firefox / Webkit: Unable to click element in iframe (Frame has been detached)
#​6460 - getDisplayMedia in headless
#​6469 - [BUG] Screencast & video metabug
#​6473 - [Feature] allow custom args for ffmpeg in VideoRecorder.ts
#​6477 - [BUG] webkit can disable mouse when evaluating specified JavaScript code
#​6480 - [Feature] on('selector' ...
#​6483 - [Question] How to set path for local exe?
#​6485 - [BUG] Cannot download a file in /tmp/ with a Snap browser

Commits (342)

d22fa86 - devops: update trigger for firefox beta builder
12d8c54 - chore: swap firefox-stable and firefox (#​6950)
bd193ca - feat: nicer stub for WebKit on MacOS 10.14 (#​6948)
55da16d - Revert "feat: switch to the Firefox Stable equivalent by default (#​6926)" (#​6947)
a1e8d2d - feat: switch to the Firefox Stable equivalent by default (#​6926)
15668f0 - chore: make WebKit @​ MacOS 10.14 error more prominent (#​6943)
d0eaec3 - chore: clarify that we download Playwright browser builds (#​6938)
334096e - docs(pom): fixed JS example which contained TS (#​6917)
52878bb - docs: use proper option name for --workers (#​6942)
99ec32a - chore: more doc nits (#​6937)
8960584 - fix(chromium): drag and drop works in chromium (#​6207)
42a9e4a - docs(mobile): make experimental Android support more present (#​6932)
8c13f67 - fix(test runner): remove folio/jest namespaces in expect matchers (#​6930)
cfd49b5 - feat: support npx playwright install msedge (#​6861)
46a0213 - chore: remove internal uses of "folio" (#​6931)
b556ee6 - chore: brush up playwright-test types (#​6928)
f745bf1 - chore: bring in folio source (#​6923)
d4e50be - fix: do not install media pack on non-server windows (#​6925)
4b5ad33 - doc: fix first .net script (#​6922)
82041b2 - test: roll to folio@0.4.0-alpha28 (#​6918)
f441755 - docs(dotnet): add test runner docs (#​6919)
69b7346 - fix: various test-related fixes (#​6916)
a836466 - fix(tracing): error handling (#​6888)
b5ac393 - docs(showcase): fixed typo in showcase.md (#​6915)
9ad507d - doc(test): pass through test docs (#​6914)
ec2b6a7 - test: add a glob test (#​6911)
ff3ad7a - fix(android): to not call Browser.setDownloadBehavior (#​6913)
9142d8c - docs: fix that test-runner is not included (#​6912)
233f187 - feat(inspector): remove snapshots (#​6909)
a96491c - feat(downloads): subscribe to download events in Browser domain instead of Page (#​6082)
e37c078 - test(nonStallingRawEvaluateInExistingMainContext): fix broken test (#​6908)
21b00d0 - test: roll to folio@0.4.0-alpha27 (#​6897)
85786b1 - feat(trace viewer): fix UI issues (#​6890)
cfcf6a8 - feat: use WebKit stub on MacOS 10.14 (#​6892)
657aa04 - browser(webkit): import to fix win compilation (#​6895)
abc66c6 - docs(api): add missing callback parameter to waitForRequestFinished (#​6893)
2663c0b - browser(webkit): import to fix mac compilation (#​6894)
cce62da - browser(webkit): roll to 06/03 (#​6889)
fb0004c - feat(webkit): bump to 1492 (#​6887)
8a81b11 - devops: replace WebKit for MacOS 10.14 build with a stub (#​6886)
401dcfd - chore: do not use a subshell hack when using XVFB (#​6884)
f264e85 - chore: bump dependency to fix vulnerability (#​6882)
d4482f3 - chore: do not use Array.from in injected script (#​6876)
f2cc439 - chore: move electron back from FYI bots to CQ1 bots (#​6883)
b19b2dc - devops: introduce manual @​next NPM publishing (#​6881)
e41979a - chore: import @​playwright/test (#​6880)
375ceca - test: disable chromium headed tracing test (#​6878)
0830c85 - test: roll to folio@0.4.0-alpha26 (#​6877)
d7c202c - browser(webkit): fix time formatting and mac compilation (#​6875)
064150f - chore: use fs.promises API instead of promisify (#​6871)
d16afef - doc(tracing): add a trace viewer doc (#​6864)
3de3a88 - feat(test): introduce npx playwright test (#​6816)
13b6444 - docs(python): add docs for installing with conda (#​6845)
cc2c691 - test: roll to folio@0.4.0-alpha25 (#​6863)
b2143a9 - chore: make tracing zero config (#​6859)
837ee08 - fix(waitForSelector): retry when context is gone during node adoption (#​6851)
8a68fa1 - docs(test runner): advanced section (#​6862)
c09726b - test: add tests for port-forwarding via playwrightclient (#​6860)q
4fa792e - browser(webkit): getLocalStorageData command (#​6858)
c5e1c8b - docs: use explicit tab suffixes (#​6855)
e91e49e - feat(port-forwarding): add playwrightclient support (#​6786)
33c2f6c - chore: do not bundle api.json and protocol.yml (#​6841)
254ec15 - feat(user-agent): Adding User-Agent in headers while making connection to browser (#​6813)
17b6f06 - feat: install media pack on windows with npx playwright install-deps (#​6836)
2fde9bc - fix(webkit): use new awaitPromise parameter instead of separate command (#​6852)
d28f45b - api(tracing): export -> stop({path}) (#​6802)
79b244a - chore: use bash instead of sh in code blocks (#​6847)
f9c8b78 - feat(webkit): bump to 1490 (#​6842)
ec7d37d - chore: update eslint config (#​6840)
831a1c8 - feat(firefox-stable): roll Firefox-Stable to Firefox v89 (#​6833)
ffe89c4 - docs(installation): use RFC5735 IPs for examples (#​6729)
919d258 - feat: support npx playwright install chrome (#​6835)
1020d3d - feat(webkit): bump to 1488 (#​6826)
251c7d8 - test: properly disable electron test (#​6839)
d767fc2 - browser(firefox-stable): disable proton UI in firefox stable (#​6838)
a1106e5 - test: disable test that fails on Electron (#​6837)
c9613b3 - devops: introduce "FYI" test bots (#​6834)
cb4adb1 - feat: install chrome-beta via cli (#​6831)
3c3a7f9 - feat(chromium): roll Chromium to r888113 (#​6832)
4f5b65f - chore: update package-lock.json to v2 (#​6830)
24dca96 - chore: remove electron/android from build_packages (#​6827)
b4ffe86 - browser(webkit): add missing override annotations (#​6829)
9b81dcc - browser(webkit): add awaitPromise parameter to Runtime.callFunctionOn (#​6828)
d79110d - fix(port-forwarding): close socket on unexpected payloads (#​6753)
531d35f - browser(chromium): revert swiftshader fixes (#​6824)
17585a3 - devops: do not run tests for docs changes (#​6825)
c8c849e - docs(page): add TypeScript $eval type-hint notes (#​6693)
0f7a760 - browser(firefox): roll Firefox-stable to 89 (#​6823)
d21a72e - chore: create new Playwright instance when launching server (#​6820)
2951f4b - chore(evaluate): remove private _evaluateInUtility methods (#​6815)
5fd15d8 - docs(test runner): put more example in various sections (#​6812)
98fc8b1 - docs(test runner): update reporters and snapshots docs (#​6811)
c8c77e4 - docs: use sha256 for exposeFunction everywhere (#​6805)
329fdb1 - chore(deps): bump ws from 7.4.5 to 7.4.6 (#​6792)
9c42192 - docs(python): add expect wrapper aliases for roll (#​6809)
47d4d47 - docs: fixed wrong waitForRequestFinished description (#​6808)
d6fe9f0 - docs(test runner): more basic docs (#​6803)
709a4cb - docs(test runner): configuration docs (#​6801)
f7e7205 - docs: update test runner docs (#​6795)
7f0d817 - test: side effects of context.storageState() (#​6793)
58e74b4 - browser(webkit): fix compilation on Ubuntu 18 (#​6794)
8fefac9 - test: roll to folio@0.4.0-alpha21 (#​6789)
a7afcf2 - docs: js/ts snippets for tests (#​6791)
040e901 - browser(webkit): roll to 05/27/21 (#​6787)
9a160c9 - feat(webkit): bump to 1486 (#​6741)
c54c487 - docs(build): add more logging hints to the cheatsheet (#​6785)
d2ab195 - feat(firefox): bump to 1268 (#​6779)
0f76062 - docs: add test runner docs (#​6784)
93a0efa - docs(runner): start adding runner docs (3) (#​6777)
2f36fee - browser(firefox-stable): merge do not use Array.prototype.toJSON for serialization (#​6783)
c8ee008 - browser(webkit): fix headless popup window crash (#​6782)
ee7e38c - test: roll to folio@0.4.0-alpha19 (#​6774)
2c9e6e8 - docs(runner): start adding runner docs (2) (#​6776)
4578d57 - docs(runner): start adding runner docs (#​6773)
ddce546 - chore(lint): upgrade @​typescript-eslint/eslint-plugin to 4.25.0 (#​6770)
7b4af6b - docs: text nits (3)
250c51f - docs: text nits (2)
9233a61 - doc: text nit
3b220e5 - test: add failing test for eval with overridden Array.toJSON (#​6766)
fb3c6e5 - api(dotnet): remove whenall (#​6768)
9f3e665 - fix(inspector): do not pause while recording (#​6604)
95bd4b3 - chore: fix codegen to emit new C# api (#​6763)
f60b79a - browser(firefox): do not use Array.prototype.toJSON for serialization (#​6767)
d36bffb - fix(connect): respect timeout in all scenarios (#​6762)
bb0e196 - api(dotnet): specialize waitForEvent (#​6761)
3aa1471 - chore: better logging for Windows CrashPad problem (#​6758)
1d0cdb3 - chore(chromium): disable GlobalMediaControls feature (#​6754)
93648aa - chore: generate dotnet initializers (#​6755)
1778e11 - fix(port-forwarding): on WebKit Win (#​6745)
59d591b - chore(port-forwarding): validate forwarded ports on the client side (#​6756)
792f3d4 - api(dotnet): use jsonelement (#​6749)
c60974d - feat: do not rely on chocolatey to install Google Chrome Beta (#​6735)
24a2326 - api(dotnet): use lists, not collections (#​6746)
9b5bcba - devops: fix goma to use new authentication (#​6747)
f7f08c9 - api(dotnet): normalize enums, remove browser channel enum (#​6738)
15bf6a0 - docs(class-page.md): Add additional clarification on requestFailed event (#​6724)
9dd2f83 - fix(codegen): update csharp boilerplate (#​6742)
3f43db5 - feat(browserServer): forward local ports (#​6375)
c9f35fb - test: revert partly 8770c64 (#​6740)
01d8f87 - chore(CLI): let other langs specify exec name (#​6719)
39a8abd - fix(install): prevent new-lines on CI/without TTY (#​6703)
f629cbe - docs: provide examples for PowerShell when settings env vars (#​6718)
30e5681 - chore: report correct browser channel for Android tests (#​6733)
4076110 - browser(webkit): fix jpeg encoding on mac after last roll (#​6732)
05e5ed2 - test: revert .only (#​6728)
8770c64 - browser(webkit): fix mac compilation after latest roll (#​6727)
2321abb - api(dotnet): fix json api (#​6723)
adf87fe - browser(webkit): roll to 05/24/21 (#​6722)
2e8d65e - test: skip falky raw headers test in Chromium (#​6721)
88defbd - docs(network): fixed proxy typo with username (#​6716)
48b4882 - test: roll to folio@0.4.0-alpha17 (#​6712)
ac0980e - chore(linting): enable required semicolons rule in TS (#​6701)
3097b9a - api(dotnet): use json element for a11y (#​6710)
be95cf4 - api(dotnet): make headers a dict (#​6709)
3bdb1c3 - api(dotnet): generate api in a specific folder (#​6708)
7d0b4c2 - chore: fix model types generation (#​6706)
17553e2 - api(dotnet): hide reducedMotion from csharp until C# 1.11 release (#​6705)
f935753 - doc(dotnet): add a self-contained example (#​6702)
ba29e99 - feat: added reduced motion media query emulation (#​6646)
af2fec6 - fix(codegen): generate all options for java (#​6698)
f529f0a - fix(codegen): generate acceptDownloads option for download signals (#​6697)
d1d49b3 - feat(chromium): roll Chromium to r884693 (#​6686)
485638e - feat(webkit): roll Deprecated WebKit to 14


Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled due to failing status checks.

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 WhiteSource Renovate. View repository job log here.

@renovate renovate bot added the Renovate label Feb 11, 2021
@sugarshin sugarshin temporarily deployed to blog-sugarsh-renovate-p-db2aag February 11, 2021 18:09 Inactive
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 810e197 to 9a72e95 Compare February 12, 2021 03:25
@sugarshin sugarshin temporarily deployed to blog-sugarsh-renovate-p-cvo9an February 12, 2021 03:26 Inactive
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 2 times, most recently from d99849b to 1f76613 Compare February 13, 2021 05:12
@sugarshin sugarshin temporarily deployed to blog-sugarsh-renovate-p-pyp5rx February 13, 2021 05:12 Inactive
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 3 times, most recently from c2cfcc9 to 93eabd3 Compare February 13, 2021 11:03
@sugarshin sugarshin temporarily deployed to blog-sugarsh-renovate-p-o6yoot February 13, 2021 11:03 Inactive
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 93eabd3 to 2008f48 Compare February 13, 2021 12:54
@sugarshin sugarshin temporarily deployed to blog-sugarsh-renovate-p-j4btna February 13, 2021 12:54 Inactive
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 2008f48 to 419be09 Compare February 13, 2021 13:59
@sugarshin sugarshin temporarily deployed to blog-sugarsh-renovate-p-v4lb4i February 13, 2021 13:59 Inactive
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 419be09 to 918987d Compare February 15, 2021 17:02
@sugarshin sugarshin temporarily deployed to blog-sugarsh-renovate-p-z4ltka February 15, 2021 17:02 Inactive
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 2 times, most recently from 2d10c8c to d69b338 Compare February 17, 2021 03:01
@sugarshin sugarshin temporarily deployed to blog-sugarsh-renovate-p-u2h4jy February 17, 2021 03:01 Inactive
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from d69b338 to 7270282 Compare February 17, 2021 23:27
@sugarshin sugarshin temporarily deployed to blog-sugarsh-renovate-p-bl1mey February 17, 2021 23:27 Inactive
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 3 times, most recently from 8a0990e to 1095df0 Compare February 18, 2021 21:17
@sugarshin sugarshin temporarily deployed to blog-sugarsh-renovate-p-4st6iz February 18, 2021 21:17 Inactive
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 1095df0 to ac1654e Compare February 19, 2021 05:58
@sugarshin sugarshin temporarily deployed to blog-sugarsh-renovate-p-e6fxsp February 19, 2021 05:59 Inactive
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from ac1654e to 4326edb Compare February 19, 2021 12:16
@sugarshin sugarshin temporarily deployed to blog-sugarsh-renovate-p-whrsqr February 19, 2021 12:16 Inactive
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 3 times, most recently from bf5b0f6 to e2dfa63 Compare May 11, 2021 00:09
@renovate renovate bot changed the title Update dependency playwright to v1.10.0 Update dependency playwright to v1.11.0 May 11, 2021
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from e2dfa63 to d55306d Compare May 20, 2021 21:27
@renovate renovate bot changed the title Update dependency playwright to v1.11.0 Update dependency playwright to v1.11.1 May 20, 2021
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 3 times, most recently from 4d14dca to 9da43d6 Compare May 31, 2021 15:46
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 9da43d6 to 021886a Compare June 9, 2021 02:12
@renovate renovate bot changed the title Update dependency playwright to v1.11.1 Update dependency playwright to v1.12.0 Jun 9, 2021
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 021886a to 6d7a8c2 Compare June 9, 2021 22:22
@renovate renovate bot changed the title Update dependency playwright to v1.12.0 Update dependency playwright to v1.12.1 Jun 9, 2021
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 2 times, most recently from 8583438 to d79881c Compare June 12, 2021 00:12
@renovate renovate bot changed the title Update dependency playwright to v1.12.1 Update dependency playwright to v1.12.2 Jun 12, 2021
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from d79881c to c01edf8 Compare June 26, 2021 08:16
@renovate renovate bot changed the title Update dependency playwright to v1.12.2 Update dependency playwright to v1.12.3 Jun 26, 2021
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from c01edf8 to 83a5b1f Compare June 30, 2021 15:44
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 83a5b1f to 1cbe9a0 Compare July 21, 2021 19:06
@renovate renovate bot changed the title Update dependency playwright to v1.12.3 Update dependency playwright to v1.13.0 Jul 21, 2021
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 1cbe9a0 to a908d50 Compare July 29, 2021 19:04
@renovate renovate bot changed the title Update dependency playwright to v1.13.0 Update dependency playwright to v1.13.1 Jul 29, 2021
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from a908d50 to 862a43b Compare July 31, 2021 15:47
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 862a43b to 67f08c5 Compare August 14, 2021 00:46
@renovate renovate bot changed the title Update dependency playwright to v1.13.1 Update dependency playwright to v1.14.0 Aug 14, 2021
@sugarshin sugarshin closed this Aug 15, 2021
@renovate
Copy link
Contributor Author

renovate bot commented Aug 15, 2021

Renovate Ignore Notification

As this PR has been closed unmerged, Renovate will now ignore this update (1.14.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 August 15, 2021 02:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants