Update dependency playwright to ~1.15.0 #11
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
~1.3.0
->~1.15.0
Release Notes
Microsoft/playwright
v1.15.2
Compare Source
Highlights
This patch includes bug fixes for the following issues:
https://github.com/microsoft/playwright/issues/9261 - [BUG] npm init playwright fails on path spaceshttps://github.com/microsoft/playwright/issues/92988 - [Question]: Should new Headers methods work in RouteAsync ?
Browser Versions
This version of Playwright was also tested against the following stable channels:
1.15.2-1633455481000
v1.15.1
Compare Source
Highlights
This patch includes bug fixes for the following issues:
#9065 - [BUG] browser(webkit): disable COOP support
#9092 - [BUG] browser(webkit): fix text padding
#9048 - [BUG] fix(test-runner): toHaveURL respect baseURL
#8955 - [BUG] fix(inspector): stop on all snapshottable actions
#8921 - [BUG] fix(test runner): after hooks step should not be nested
#8975 - [BUG] feat(fetch): support form data and json encodings
#9071 - [BUG] fix(fetch): be compatible with a 0 timeout
#8999 - [BUG] fix: do not dedup header values
#9038 - [BUG] fix: restore support for slowmo connect option
Browser Versions
This version of Playwright was also tested against the following stable channels:
1.15.0-1633020276000
v1.15.0
Compare Source
🎭 Playwright Library
🖱️ Mouse Wheel
By using
Page.mouse.wheel
you are now able to scroll vertically or horizontally.📜 New Headers API
Previously it was not possible to get multiple header values of a response. This is now possible and additional helper functions are available:
🌈 Forced-Colors emulation
Its now possible to emulate the
forced-colors
CSS media feature by passing it in the context options or calling Page.emulateMedia().New APIs
times
option to specify how many times this route should be matched.🎭 Playwright Test
🤝
test.parallel()
run tests in the same file in parallelBy default, tests in a single file are run in order. If you have many independent tests in a single file, you can now run them in parallel with test.describe.parallel(title, callback).
🛠 Add
--debug
CLI flagBy using
npx playwright test --debug
it will enable the Playwright Inspector for you to debug your tests.Browser Versions
This version of Playwright was also tested against the following stable channels:
v1.14.1
Compare Source
Highlights
This patch includes bug fixes for the following issues:
#8287 - [BUG] webkit crashes intermittently: "file data stream has an unexpected number of bytes"
#8281 - [BUG] HTML report crashes if diff snapshot does not exists
#8230 - Using React Selectors with multiple React trees
#8366 - [BUG] Mark timeout in isVisible as deprecated and noop
Browser Versions
This version of Playwright was also tested against the following stable channels:
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.📍 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!
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.
Learn more in the react selectors documentation and the vue selectors documentation.
✨ New
nth
andvisible
selector enginesnth
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.🎭 Playwright Test
✅ Web-First Assertions
expect
now supports lots of new web-first assertions.Consider the following example:
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 thetestProject.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:
expect(locator).toBeChecked()
expect(locator).toBeDisabled()
expect(locator).toBeEditable()
expect(locator).toBeEmpty()
expect(locator).toBeEnabled()
expect(locator).toBeFocused()
expect(locator).toBeHidden()
expect(locator).toBeVisible()
expect(locator).toContainText(text, options?)
expect(locator).toHaveAttribute(name, value)
expect(locator).toHaveClass(expected)
expect(locator).toHaveCount(count)
expect(locator).toHaveCSS(name, value)
expect(locator).toHaveId(id)
expect(locator).toHaveJSProperty(name, value)
expect(locator).toHaveText(expected, options)
expect(page).toHaveTitle(title)
expect(page).toHaveURL(url)
expect(locator).toHaveValue(value)
⛓ 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.
Learn more in the documentation.
🐾 Steps API with
test.step
Split long tests into multiple steps using
test.step()
API: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 abaseURL
when creating a context.Learn more in the documentation.
Browser Versions
This version of Playwright was also tested against the following stable channels:
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
v1.13.0
Compare Source
Playwright Test
baseURL
fixture to support relative paths in tests.Playwright
page.dragAndDrop()
][page.dragAndDrop()] API.recordHar
option in [browser.newContext()
][browser.newContext()].Tools
console.log()
calls.New and Overhauled Guides
Browser Versions
New Playwright APIs
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()]force
option in [page.fill()
][page.fill()], [frame.fill()
][frame.fill()], and [elementHandle.fill()
][elementHandle.fill()]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
This version of Playwright was also tested against the following stable channels:
v1.12.2
Compare Source
Highlights
This patch release includes bugfixes for the following issues:
Browser Versions
This version of Playwright was also tested against the following stable channels:
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
This version of Playwright was also tested against the following stable channels:
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:
Installation:
Simple test
tests/foo.spec.ts
: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:
Traces are recorded using the new [
browserContext.tracing
][browserContext.tracing] API:Traces are examined later with the Playwright CLI:
That will open the following GUI:
👉 Read more in trace viewer documentation.
Browser Versions
This version of Playwright was also tested against the following stable channels:
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()]browserContext.tracing
][browserContext.tracing] API namespacedownload.page()
][download.page()] methodelectron.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 browserCommits (342)
d22fa86
- devops: update trigger for firefox beta builder12d8c54
- 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: supportnpx 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): introducenpx 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)q4fa792e
- 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 withnpx 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: supportnpx 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 nit3b220e5
- 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)[`93648
Configuration
📅 Schedule: At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ 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.
This PR has been generated by WhiteSource Renovate. View repository job log here.
This change is