mirror of
https://github.com/microsoft/playwright.git
synced 2024-11-24 06:49:04 +03:00
chore(bidi): update setContent expectations for ff (#32992)
This commit is contained in:
parent
892d67ffef
commit
bcf4ff1e47
@ -56,7 +56,8 @@ class ExpectationReporter implements Reporter {
|
||||
const outcome = getOutcome(test);
|
||||
// Strip root and project names.
|
||||
const key = test.titlePath().slice(2).join(' › ');
|
||||
if (!expectations.has(key) || expectations.get(key) === 'unknown')
|
||||
if (!expectations.has(key) || expectations.get(key) === 'unknown' ||
|
||||
(expectations.get(key) === 'fail' && outcome === 'pass'))
|
||||
expectations.set(key, outcome);
|
||||
}
|
||||
const keys = Array.from(expectations.keys());
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -28,7 +28,7 @@ library/browsercontext-add-cookies.spec.ts › should send cookie header [pass]
|
||||
library/browsercontext-add-cookies.spec.ts › should set a cookie on a different domain [pass]
|
||||
library/browsercontext-add-cookies.spec.ts › should set a cookie with a path [pass]
|
||||
library/browsercontext-add-cookies.spec.ts › should set cookie with reasonable defaults [pass]
|
||||
library/browsercontext-add-cookies.spec.ts › should set cookies for a frame [fail]
|
||||
library/browsercontext-add-cookies.spec.ts › should set cookies for a frame [pass]
|
||||
library/browsercontext-add-cookies.spec.ts › should set multiple cookies [pass]
|
||||
library/browsercontext-add-cookies.spec.ts › should set secure cookies on secure WebSocket [fail]
|
||||
library/browsercontext-add-cookies.spec.ts › should work @smoke [pass]
|
||||
@ -51,8 +51,8 @@ library/browsercontext-basic.spec.ts › close() should abort waitForEvent [pass
|
||||
library/browsercontext-basic.spec.ts › close() should be callable twice [pass]
|
||||
library/browsercontext-basic.spec.ts › close() should work for empty context [pass]
|
||||
library/browsercontext-basic.spec.ts › default user agent [pass]
|
||||
library/browsercontext-basic.spec.ts › setContent should work after disabling javascript [fail]
|
||||
library/browsercontext-basic.spec.ts › should be able to click across browser contexts [fail]
|
||||
library/browsercontext-basic.spec.ts › setContent should work after disabling javascript [pass]
|
||||
library/browsercontext-basic.spec.ts › should be able to click across browser contexts [pass]
|
||||
library/browsercontext-basic.spec.ts › should be able to navigate after disabling javascript [pass]
|
||||
library/browsercontext-basic.spec.ts › should close all belonging pages once closing context [fail]
|
||||
library/browsercontext-basic.spec.ts › should create new context @smoke [pass]
|
||||
@ -113,7 +113,7 @@ library/browsercontext-device.spec.ts › device › should emulate viewport wit
|
||||
library/browsercontext-device.spec.ts › device › should reset scroll top after a navigation [pass]
|
||||
library/browsercontext-device.spec.ts › device › should scroll to a precise position with mobile scale [pass]
|
||||
library/browsercontext-device.spec.ts › device › should scroll to click [pass]
|
||||
library/browsercontext-device.spec.ts › device › should scroll twice when emulated [fail]
|
||||
library/browsercontext-device.spec.ts › device › should scroll twice when emulated [pass]
|
||||
library/browsercontext-device.spec.ts › device › should support clicking [pass]
|
||||
library/browsercontext-device.spec.ts › device › should work @smoke [fail]
|
||||
library/browsercontext-dsf.spec.ts › should fetch hidpi assets [fail]
|
||||
@ -132,7 +132,7 @@ library/browsercontext-expose-function.spec.ts › expose binding should work [p
|
||||
library/browsercontext-expose-function.spec.ts › exposeBindingHandle should work [pass]
|
||||
library/browsercontext-expose-function.spec.ts › should be callable from-inside addInitScript [pass]
|
||||
library/browsercontext-expose-function.spec.ts › should throw for duplicate registrations [pass]
|
||||
library/browsercontext-expose-function.spec.ts › should work [fail]
|
||||
library/browsercontext-expose-function.spec.ts › should work [pass]
|
||||
library/browsercontext-expose-function.spec.ts › should work with CSP [fail]
|
||||
library/browsercontext-fetch-algorithms.spec.ts › algorithms › br decompression › should not fail if response content-length header is missing (br) [pass]
|
||||
library/browsercontext-fetch-algorithms.spec.ts › algorithms › br decompression › should not fail with an empty response with content-length header (Z_BUF_ERROR) [pass]
|
||||
@ -289,7 +289,7 @@ library/browsercontext-har.spec.ts › should reload redirected navigation [time
|
||||
library/browsercontext-har.spec.ts › should round-trip extracted har.zip [fail]
|
||||
library/browsercontext-har.spec.ts › should round-trip har with postData [fail]
|
||||
library/browsercontext-har.spec.ts › should round-trip har.zip [fail]
|
||||
library/browsercontext-har.spec.ts › should support regex filter [fail]
|
||||
library/browsercontext-har.spec.ts › should support regex filter [pass]
|
||||
library/browsercontext-har.spec.ts › should update extracted har.zip for page [fail]
|
||||
library/browsercontext-har.spec.ts › should update har.zip for context [fail]
|
||||
library/browsercontext-har.spec.ts › should update har.zip for page [fail]
|
||||
@ -305,12 +305,13 @@ library/browsercontext-locale.spec.ts › should format number in popups [timeou
|
||||
library/browsercontext-locale.spec.ts › should format number in workers [fail]
|
||||
library/browsercontext-locale.spec.ts › should not change default locale in another context [fail]
|
||||
library/browsercontext-locale.spec.ts › should work for multiple pages sharing same process [pass]
|
||||
library/browsercontext-network-event.spec.ts › BrowserContext.Events.Request [fail]
|
||||
library/browsercontext-network-event.spec.ts › BrowserContext.Events.Request [pass]
|
||||
library/browsercontext-network-event.spec.ts › BrowserContext.Events.RequestFailed [fail]
|
||||
library/browsercontext-network-event.spec.ts › BrowserContext.Events.RequestFinished [pass]
|
||||
library/browsercontext-network-event.spec.ts › BrowserContext.Events.Response [fail]
|
||||
library/browsercontext-network-event.spec.ts › BrowserContext.Events.Response [pass]
|
||||
library/browsercontext-network-event.spec.ts › should fire events in proper order [pass]
|
||||
library/browsercontext-network-event.spec.ts › should not fire events for favicon or favicon redirects [unknown]
|
||||
library/browsercontext-network-event.spec.ts › should reject response.finished if context closes [timeout]
|
||||
library/browsercontext-page-event.spec.ts › should fire page lifecycle events [fail]
|
||||
library/browsercontext-page-event.spec.ts › should have about:blank for empty url with domcontentloaded [timeout]
|
||||
library/browsercontext-page-event.spec.ts › should have about:blank url with domcontentloaded [pass]
|
||||
@ -321,14 +322,14 @@ library/browsercontext-page-event.spec.ts › should not crash while redirecting
|
||||
library/browsercontext-page-event.spec.ts › should not hang on ctrl-click during provisional load [fail]
|
||||
library/browsercontext-page-event.spec.ts › should report initialized pages [pass]
|
||||
library/browsercontext-page-event.spec.ts › should report when a new page is created and closed [pass]
|
||||
library/browsercontext-page-event.spec.ts › should work with Ctrl-clicking [fail]
|
||||
library/browsercontext-page-event.spec.ts › should work with Shift-clicking [fail]
|
||||
library/browsercontext-page-event.spec.ts › should work with Ctrl-clicking [pass]
|
||||
library/browsercontext-page-event.spec.ts › should work with Shift-clicking [pass]
|
||||
library/browsercontext-pages.spec.ts › frame.focus should work multiple times [fail]
|
||||
library/browsercontext-pages.spec.ts › page.context should return the correct instance [pass]
|
||||
library/browsercontext-pages.spec.ts › should click the button with deviceScaleFactor set [fail]
|
||||
library/browsercontext-pages.spec.ts › should click the button with offset with page scale [pass]
|
||||
library/browsercontext-pages.spec.ts › should click with disabled javascript [pass]
|
||||
library/browsercontext-pages.spec.ts › should keep selection in multiple pages [fail]
|
||||
library/browsercontext-pages.spec.ts › should keep selection in multiple pages [pass]
|
||||
library/browsercontext-pages.spec.ts › should not be visible in context.pages [pass]
|
||||
library/browsercontext-pages.spec.ts › should not hang with touch-enabled viewports [pass]
|
||||
library/browsercontext-pages.spec.ts › should not leak listeners during navigation of 20 pages [pass]
|
||||
@ -359,10 +360,10 @@ library/browsercontext-proxy.spec.ts › should use socks proxy in second page [
|
||||
library/browsercontext-proxy.spec.ts › should work when passing the proxy only on the context level [fail]
|
||||
library/browsercontext-proxy.spec.ts › should work with IP:PORT notion [fail]
|
||||
library/browsercontext-reuse.spec.ts › should continue issuing events after closing the reused page [pass]
|
||||
library/browsercontext-reuse.spec.ts › should ignore binding from beforeunload [fail]
|
||||
library/browsercontext-reuse.spec.ts › should ignore binding from beforeunload [pass]
|
||||
library/browsercontext-reuse.spec.ts › should not cache resources [fail]
|
||||
library/browsercontext-reuse.spec.ts › should re-add binding after reset [pass]
|
||||
library/browsercontext-reuse.spec.ts › should reset mouse position [fail]
|
||||
library/browsercontext-reuse.spec.ts › should reset mouse position [pass]
|
||||
library/browsercontext-reuse.spec.ts › should reset serviceworker [pass]
|
||||
library/browsercontext-reuse.spec.ts › should reset serviceworker that hangs in importScripts [pass]
|
||||
library/browsercontext-reuse.spec.ts › should reset tracing [pass]
|
||||
@ -419,11 +420,12 @@ library/browsercontext-user-agent.spec.ts › should work for navigator.userAgen
|
||||
library/browsercontext-user-agent.spec.ts › should work for subframes [fail]
|
||||
library/browsercontext-viewport-mobile.spec.ts › mobile viewport › default mobile viewports to 980 width [fail]
|
||||
library/browsercontext-viewport-mobile.spec.ts › mobile viewport › mouse should work with mobile viewports and cross process navigations [pass]
|
||||
library/browsercontext-viewport-mobile.spec.ts › mobile viewport › respect meta viewport tag [fail]
|
||||
library/browsercontext-viewport-mobile.spec.ts › mobile viewport › respect meta viewport tag [pass]
|
||||
library/browsercontext-viewport-mobile.spec.ts › mobile viewport › should be detectable [fail]
|
||||
library/browsercontext-viewport-mobile.spec.ts › mobile viewport › should detect touch when applying viewport with touches [fail]
|
||||
library/browsercontext-viewport-mobile.spec.ts › mobile viewport › should emulate the hover media feature [fail]
|
||||
library/browsercontext-viewport-mobile.spec.ts › mobile viewport › should fire orientationchange event [fail]
|
||||
library/browsercontext-viewport-mobile.spec.ts › mobile viewport › should scroll mobile page with background-attachment: fixed [fail]
|
||||
library/browsercontext-viewport-mobile.spec.ts › mobile viewport › should scroll when emulating a mobile viewport [pass]
|
||||
library/browsercontext-viewport-mobile.spec.ts › mobile viewport › should support landscape emulation [pass]
|
||||
library/browsercontext-viewport-mobile.spec.ts › mobile viewport › should support mobile emulation [pass]
|
||||
@ -444,7 +446,7 @@ library/browsercontext-viewport.spec.ts › should set both screen and viewport
|
||||
library/browsercontext-viewport.spec.ts › should set the proper viewport size [pass]
|
||||
library/browsercontext-viewport.spec.ts › should set window.screen.orientation.type for mobile devices [fail]
|
||||
library/browsercontext-viewport.spec.ts › should support touch with null viewport [fail]
|
||||
library/browsercontext-viewport.spec.ts › should throw on tap if hasTouch is not enabled [fail]
|
||||
library/browsercontext-viewport.spec.ts › should throw on tap if hasTouch is not enabled [pass]
|
||||
library/browsertype-basic.spec.ts › browserType.executablePath should work [unknown]
|
||||
library/browsertype-basic.spec.ts › browserType.name should work [fail]
|
||||
library/browsertype-basic.spec.ts › should throw when trying to connect with not-chromium [pass]
|
||||
@ -594,10 +596,11 @@ library/capabilities.spec.ts › requestFullscreen [pass]
|
||||
library/capabilities.spec.ts › service worker should cover the iframe [pass]
|
||||
library/capabilities.spec.ts › service worker should register in an iframe [pass]
|
||||
library/capabilities.spec.ts › serviceWorker should intercept document request [pass]
|
||||
library/capabilities.spec.ts › should not crash on page with mp4 @smoke [fail]
|
||||
library/capabilities.spec.ts › should be able to render avif images [pass]
|
||||
library/capabilities.spec.ts › should not crash on page with mp4 @smoke [pass]
|
||||
library/capabilities.spec.ts › should not crash on showDirectoryPicker [unknown]
|
||||
library/capabilities.spec.ts › should not crash on storage.getDirectory() [pass]
|
||||
library/capabilities.spec.ts › should play audio @smoke [fail]
|
||||
library/capabilities.spec.ts › should play audio @smoke [pass]
|
||||
library/capabilities.spec.ts › should play video @smoke [pass]
|
||||
library/capabilities.spec.ts › should play webm video @smoke [pass]
|
||||
library/capabilities.spec.ts › should respect CSP @smoke [fail]
|
||||
@ -680,6 +683,7 @@ library/chromium/js-coverage.spec.ts › shouldn't ignore eval() scripts if repo
|
||||
library/chromium/launcher.spec.ts › should not create pages automatically [fail]
|
||||
library/chromium/launcher.spec.ts › should not throw with remote-debugging-port argument [fail]
|
||||
library/chromium/launcher.spec.ts › should open devtools when "devtools: true" option is given [unknown]
|
||||
library/chromium/launcher.spec.ts › should report console messages from content script [timeout]
|
||||
library/chromium/launcher.spec.ts › should return background pages [timeout]
|
||||
library/chromium/launcher.spec.ts › should return background pages when recording video [timeout]
|
||||
library/chromium/launcher.spec.ts › should support request/response events when using backgroundPage() [timeout]
|
||||
@ -706,7 +710,7 @@ library/chromium/oopif.spec.ts › should report oopif frames [pass]
|
||||
library/chromium/oopif.spec.ts › should respect route [pass]
|
||||
library/chromium/oopif.spec.ts › should support addInitScript [pass]
|
||||
library/chromium/oopif.spec.ts › should support context options [fail]
|
||||
library/chromium/oopif.spec.ts › should support exposeFunction [fail]
|
||||
library/chromium/oopif.spec.ts › should support exposeFunction [pass]
|
||||
library/chromium/oopif.spec.ts › should take screenshot [fail]
|
||||
library/chromium/session.spec.ts › should be able to detach session [fail]
|
||||
library/chromium/session.spec.ts › should detach when page closes [fail]
|
||||
@ -909,6 +913,7 @@ library/clock.spec.ts › stubTimers › replaces global performance.now [pass]
|
||||
library/clock.spec.ts › stubTimers › replaces global setInterval [pass]
|
||||
library/clock.spec.ts › stubTimers › replaces global setTimeout [pass]
|
||||
library/clock.spec.ts › stubTimers › resets faked methods [pass]
|
||||
library/clock.spec.ts › stubTimers › restores global property on uninstall if it was inherited onto the global object [pass]
|
||||
library/clock.spec.ts › stubTimers › returns clock object [pass]
|
||||
library/clock.spec.ts › stubTimers › sets initial timestamp [pass]
|
||||
library/clock.spec.ts › stubTimers › should let performance.mark still be callable after install() (#136) [unknown]
|
||||
@ -963,7 +968,7 @@ library/defaultbrowsercontext-2.spec.ts › should handle exception [timeout]
|
||||
library/defaultbrowsercontext-2.spec.ts › should handle timeout [pass]
|
||||
library/defaultbrowsercontext-2.spec.ts › should have default URL when launching browser [pass]
|
||||
library/defaultbrowsercontext-2.spec.ts › should have passed URL when launching with ignoreDefaultArgs: true [fail]
|
||||
library/defaultbrowsercontext-2.spec.ts › should respect selectors [fail]
|
||||
library/defaultbrowsercontext-2.spec.ts › should respect selectors [pass]
|
||||
library/defaultbrowsercontext-2.spec.ts › should restore state from userDataDir [pass]
|
||||
library/defaultbrowsercontext-2.spec.ts › should support colorScheme option [fail]
|
||||
library/defaultbrowsercontext-2.spec.ts › should support extraHTTPHeaders option [fail]
|
||||
@ -1027,11 +1032,11 @@ library/emulation-focus.spec.ts › should focus popups by default [fail]
|
||||
library/emulation-focus.spec.ts › should focus with more than one page/context [fail]
|
||||
library/emulation-focus.spec.ts › should not affect mouse event target page [pass]
|
||||
library/emulation-focus.spec.ts › should not affect screenshots [fail]
|
||||
library/emulation-focus.spec.ts › should not fire blur events when interacting with more than one page/context [fail]
|
||||
library/emulation-focus.spec.ts › should not fire blur events when interacting with more than one page/context [pass]
|
||||
library/emulation-focus.spec.ts › should provide target for keyboard events [pass]
|
||||
library/emulation-focus.spec.ts › should think that all pages are focused @smoke [fail]
|
||||
library/emulation-focus.spec.ts › should think that it is focused by default [pass]
|
||||
library/emulation-focus.spec.ts › should trigger hover state concurrently [fail]
|
||||
library/emulation-focus.spec.ts › should trigger hover state concurrently [pass]
|
||||
library/events/add-listeners.spec.ts › EventEmitter tests › Listener order [pass]
|
||||
library/events/add-listeners.spec.ts › EventEmitter tests › listener type check [pass]
|
||||
library/events/add-listeners.spec.ts › EventEmitter tests › set max listeners test [pass]
|
||||
@ -1133,6 +1138,7 @@ library/global-fetch.spec.ts › should abort requests when context is disposed
|
||||
library/global-fetch.spec.ts › should accept already serialized data as Buffer when content-type is application/json [pass]
|
||||
library/global-fetch.spec.ts › should be able to construct with context options [pass]
|
||||
library/global-fetch.spec.ts › should dispose global request [pass]
|
||||
library/global-fetch.spec.ts › should fallback to given URL if baseURL is bogus [pass]
|
||||
library/global-fetch.spec.ts › should have nice toString [pass]
|
||||
library/global-fetch.spec.ts › should json stringify array body when content-type is application/json [pass]
|
||||
library/global-fetch.spec.ts › should json stringify bool (false) body when content-type is application/json [pass]
|
||||
@ -1195,7 +1201,7 @@ library/har.spec.ts › should have connection details for redirects [fail]
|
||||
library/har.spec.ts › should have different hars for concurrent contexts [pass]
|
||||
library/har.spec.ts › should have pages [pass]
|
||||
library/har.spec.ts › should have pages in persistent context [pass]
|
||||
library/har.spec.ts › should have popup requests [fail]
|
||||
library/har.spec.ts › should have popup requests [pass]
|
||||
library/har.spec.ts › should have security details [fail]
|
||||
library/har.spec.ts › should have version and creator [pass]
|
||||
library/har.spec.ts › should include API request [pass]
|
||||
@ -1213,6 +1219,8 @@ library/har.spec.ts › should include secure set-cookies [fail]
|
||||
library/har.spec.ts › should include set-cookies [fail]
|
||||
library/har.spec.ts › should include set-cookies with comma [fail]
|
||||
library/har.spec.ts › should include sizes [fail]
|
||||
library/har.spec.ts › should include timings when using http proxy [fail]
|
||||
library/har.spec.ts › should include timings when using socks proxy [pass]
|
||||
library/har.spec.ts › should not contain internal pages [pass]
|
||||
library/har.spec.ts › should not hang on resources served from cache [pass]
|
||||
library/har.spec.ts › should not hang on slow chunked response [fail]
|
||||
@ -1233,12 +1241,12 @@ library/har.spec.ts › should skip invalid Expires [pass]
|
||||
library/har.spec.ts › should throw without path [pass]
|
||||
library/har.spec.ts › should use attach mode for zip extension [fail]
|
||||
library/har.spec.ts › should work with gzip compression [fail]
|
||||
library/headful.spec.ts › Page.bringToFront should work [fail]
|
||||
library/headful.spec.ts › headless and headful should use same default fonts [fail]
|
||||
library/headful.spec.ts › Page.bringToFront should work [pass]
|
||||
library/headful.spec.ts › headless and headful should use same default fonts [pass]
|
||||
library/headful.spec.ts › should click background tab [fail]
|
||||
library/headful.spec.ts › should click bottom row w/ infobar in OOPIF [timeout]
|
||||
library/headful.spec.ts › should click in OOPIF [fail]
|
||||
library/headful.spec.ts › should click when viewport size is larger than screen [fail]
|
||||
library/headful.spec.ts › should click when viewport size is larger than screen [pass]
|
||||
library/headful.spec.ts › should close browser after context menu was triggered [pass]
|
||||
library/headful.spec.ts › should close browser with beforeunload page [pass]
|
||||
library/headful.spec.ts › should close browsercontext with pending beforeunload dialog [fail]
|
||||
@ -1251,21 +1259,21 @@ library/headful.spec.ts › should(not) block third party cookies [pass]
|
||||
library/hit-target.spec.ts › should block all events when hit target is wrong [pass]
|
||||
library/hit-target.spec.ts › should block all events when hit target is wrong and element detaches [pass]
|
||||
library/hit-target.spec.ts › should block click when mousedown fails [pass]
|
||||
library/hit-target.spec.ts › should click an element inside closed shadow root [fail]
|
||||
library/hit-target.spec.ts › should click in custom element [fail]
|
||||
library/hit-target.spec.ts › should click an element inside closed shadow root [pass]
|
||||
library/hit-target.spec.ts › should click in custom element [pass]
|
||||
library/hit-target.spec.ts › should click in iframe with padding [fail]
|
||||
library/hit-target.spec.ts › should click in iframe with padding 2 [fail]
|
||||
library/hit-target.spec.ts › should click in iframe with padding 2 [pass]
|
||||
library/hit-target.spec.ts › should click into frame inside closed shadow root [fail]
|
||||
library/hit-target.spec.ts › should click the button again after document.write [pass]
|
||||
library/hit-target.spec.ts › should click when element detaches in mousedown [pass]
|
||||
library/hit-target.spec.ts › should detect overlaid element in a transformed iframe [fail]
|
||||
library/hit-target.spec.ts › should detect overlay from another shadow root [fail]
|
||||
library/hit-target.spec.ts › should detect overlay from another shadow root [pass]
|
||||
library/hit-target.spec.ts › should not block programmatic events [pass]
|
||||
library/hit-target.spec.ts › should not click an element overlaying iframe with the target [fail]
|
||||
library/hit-target.spec.ts › should not click iframe overlaying the target [fail]
|
||||
library/hit-target.spec.ts › should work with block inside inline [fail]
|
||||
library/hit-target.spec.ts › should work with block inside inline in shadow dom [fail]
|
||||
library/hit-target.spec.ts › should work with block-block-block inside inline-inline [fail]
|
||||
library/hit-target.spec.ts › should not click an element overlaying iframe with the target [pass]
|
||||
library/hit-target.spec.ts › should not click iframe overlaying the target [pass]
|
||||
library/hit-target.spec.ts › should work with block inside inline [pass]
|
||||
library/hit-target.spec.ts › should work with block inside inline in shadow dom [pass]
|
||||
library/hit-target.spec.ts › should work with block-block-block inside inline-inline [pass]
|
||||
library/hit-target.spec.ts › should work with drag and drop that moves the element under cursor [pass]
|
||||
library/hit-target.spec.ts › should work with mui select [pass]
|
||||
library/ignorehttpserrors.spec.ts › serviceWorker should intercept document request [fail]
|
||||
@ -1307,6 +1315,7 @@ library/inspector/cli-codegen-1.spec.ts › cli codegen › should update select
|
||||
library/inspector/cli-codegen-1.spec.ts › cli codegen › should work with TrustedTypes [fail]
|
||||
library/inspector/cli-codegen-2.spec.ts › cli codegen › click should emit events in order [fail]
|
||||
library/inspector/cli-codegen-2.spec.ts › cli codegen › should --save-trace [fail]
|
||||
library/inspector/cli-codegen-2.spec.ts › cli codegen › should --test-id-attribute [timeout]
|
||||
library/inspector/cli-codegen-2.spec.ts › cli codegen › should check input with chaining id [fail]
|
||||
library/inspector/cli-codegen-2.spec.ts › cli codegen › should clear files [fail]
|
||||
library/inspector/cli-codegen-2.spec.ts › cli codegen › should contain close page [fail]
|
||||
@ -1317,7 +1326,7 @@ library/inspector/cli-codegen-2.spec.ts › cli codegen › should fill tricky c
|
||||
library/inspector/cli-codegen-2.spec.ts › cli codegen › should handle dialogs [fail]
|
||||
library/inspector/cli-codegen-2.spec.ts › cli codegen › should handle history.postData [fail]
|
||||
library/inspector/cli-codegen-2.spec.ts › cli codegen › should not clash pages [timeout]
|
||||
library/inspector/cli-codegen-2.spec.ts › cli codegen › should not lead to an error if html gets clicked [fail]
|
||||
library/inspector/cli-codegen-2.spec.ts › cli codegen › should not lead to an error if html gets clicked [pass]
|
||||
library/inspector/cli-codegen-2.spec.ts › cli codegen › should record navigations after identical pushState [fail]
|
||||
library/inspector/cli-codegen-2.spec.ts › cli codegen › should record open in a new tab with url [fail]
|
||||
library/inspector/cli-codegen-2.spec.ts › cli codegen › should reset hover model on action when element detaches [fail]
|
||||
@ -1336,6 +1345,10 @@ library/inspector/cli-codegen-3.spec.ts › cli codegen › should click locator
|
||||
library/inspector/cli-codegen-3.spec.ts › cli codegen › should consume contextmenu events, despite a custom context menu [fail]
|
||||
library/inspector/cli-codegen-3.spec.ts › cli codegen › should consume pointer events [fail]
|
||||
library/inspector/cli-codegen-3.spec.ts › cli codegen › should generate frame locators [fail]
|
||||
library/inspector/cli-codegen-3.spec.ts › cli codegen › should generate frame locators (1) [timeout]
|
||||
library/inspector/cli-codegen-3.spec.ts › cli codegen › should generate frame locators (2) [timeout]
|
||||
library/inspector/cli-codegen-3.spec.ts › cli codegen › should generate frame locators (3) [timeout]
|
||||
library/inspector/cli-codegen-3.spec.ts › cli codegen › should generate frame locators (4) [timeout]
|
||||
library/inspector/cli-codegen-3.spec.ts › cli codegen › should generate frame locators with id attribute [fail]
|
||||
library/inspector/cli-codegen-3.spec.ts › cli codegen › should generate frame locators with name attribute [fail]
|
||||
library/inspector/cli-codegen-3.spec.ts › cli codegen › should generate frame locators with special characters in name attribute [fail]
|
||||
@ -1397,38 +1410,38 @@ library/inspector/cli-codegen-test.spec.ts › should print the correct context
|
||||
library/inspector/cli-codegen-test.spec.ts › should print the correct imports and context options [fail]
|
||||
library/inspector/cli-codegen-test.spec.ts › should work with --save-har [fail]
|
||||
library/inspector/console-api.spec.ts › expected properties on playwright object [pass]
|
||||
library/inspector/console-api.spec.ts › should support locator.and() [fail]
|
||||
library/inspector/console-api.spec.ts › should support locator.or() [fail]
|
||||
library/inspector/console-api.spec.ts › should support locator.and() [pass]
|
||||
library/inspector/console-api.spec.ts › should support locator.or() [pass]
|
||||
library/inspector/console-api.spec.ts › should support playwright.$, playwright.$$ [pass]
|
||||
library/inspector/console-api.spec.ts › should support playwright.getBy* [fail]
|
||||
library/inspector/console-api.spec.ts › should support playwright.locator({ has }) [fail]
|
||||
library/inspector/console-api.spec.ts › should support playwright.locator({ hasNot }) [fail]
|
||||
library/inspector/console-api.spec.ts › should support playwright.locator.value [fail]
|
||||
library/inspector/console-api.spec.ts › should support playwright.locator.values [fail]
|
||||
library/inspector/console-api.spec.ts › should support playwright.getBy* [pass]
|
||||
library/inspector/console-api.spec.ts › should support playwright.locator({ has }) [pass]
|
||||
library/inspector/console-api.spec.ts › should support playwright.locator({ hasNot }) [pass]
|
||||
library/inspector/console-api.spec.ts › should support playwright.locator.value [pass]
|
||||
library/inspector/console-api.spec.ts › should support playwright.locator.values [pass]
|
||||
library/inspector/console-api.spec.ts › should support playwright.selector [pass]
|
||||
library/inspector/pause.spec.ts › pause › should hide internal calls [pass]
|
||||
library/inspector/pause.spec.ts › pause › should highlight locators with custom testId [fail]
|
||||
library/inspector/pause.spec.ts › pause › should highlight on explore [fail]
|
||||
library/inspector/pause.spec.ts › pause › should highlight on explore (csharp) [fail]
|
||||
library/inspector/pause.spec.ts › pause › should highlight locators with custom testId [pass]
|
||||
library/inspector/pause.spec.ts › pause › should highlight on explore [pass]
|
||||
library/inspector/pause.spec.ts › pause › should highlight on explore (csharp) [pass]
|
||||
library/inspector/pause.spec.ts › pause › should highlight pointer, only in main frame [fail]
|
||||
library/inspector/pause.spec.ts › pause › should highlight waitForEvent [fail]
|
||||
library/inspector/pause.spec.ts › pause › should not prevent key events [fail]
|
||||
library/inspector/pause.spec.ts › pause › should highlight waitForEvent [pass]
|
||||
library/inspector/pause.spec.ts › pause › should not prevent key events [pass]
|
||||
library/inspector/pause.spec.ts › pause › should pause after a navigation [pass]
|
||||
library/inspector/pause.spec.ts › pause › should pause and resume the script [pass]
|
||||
library/inspector/pause.spec.ts › pause › should pause and resume the script with keyboard shortcut [pass]
|
||||
library/inspector/pause.spec.ts › pause › should pause on context close [pass]
|
||||
library/inspector/pause.spec.ts › pause › should pause on next pause [pass]
|
||||
library/inspector/pause.spec.ts › pause › should pause on page close [pass]
|
||||
library/inspector/pause.spec.ts › pause › should populate log [fail]
|
||||
library/inspector/pause.spec.ts › pause › should populate log [pass]
|
||||
library/inspector/pause.spec.ts › pause › should populate log with error [fail]
|
||||
library/inspector/pause.spec.ts › pause › should populate log with error in waitForEvent [fail]
|
||||
library/inspector/pause.spec.ts › pause › should populate log with waitForEvent [fail]
|
||||
library/inspector/pause.spec.ts › pause › should populate log with error in waitForEvent [pass]
|
||||
library/inspector/pause.spec.ts › pause › should populate log with waitForEvent [pass]
|
||||
library/inspector/pause.spec.ts › pause › should resume from console [pass]
|
||||
library/inspector/pause.spec.ts › pause › should show expect.toHaveText [fail]
|
||||
library/inspector/pause.spec.ts › pause › should show expect.toHaveText [pass]
|
||||
library/inspector/pause.spec.ts › pause › should show source [pass]
|
||||
library/inspector/pause.spec.ts › pause › should skip input when resuming [fail]
|
||||
library/inspector/pause.spec.ts › pause › should step [fail]
|
||||
library/inspector/pause.spec.ts › pause › should step with keyboard shortcut [fail]
|
||||
library/inspector/pause.spec.ts › pause › should skip input when resuming [pass]
|
||||
library/inspector/pause.spec.ts › pause › should step [pass]
|
||||
library/inspector/pause.spec.ts › pause › should step with keyboard shortcut [pass]
|
||||
library/inspector/pause.spec.ts › should not reset timeouts [pass]
|
||||
library/inspector/pause.spec.ts › should resume when closing inspector [pass]
|
||||
library/launcher.spec.ts › should have a devices object [pass]
|
||||
@ -1456,7 +1469,7 @@ library/locator-generator.spec.ts › reverse engineer locators [pass]
|
||||
library/locator-generator.spec.ts › reverse engineer locators with regex [pass]
|
||||
library/locator-generator.spec.ts › reverse engineer ordered locators [pass]
|
||||
library/logger.spec.ts › should log @smoke [pass]
|
||||
library/logger.spec.ts › should log context-level [fail]
|
||||
library/logger.spec.ts › should log context-level [pass]
|
||||
library/modernizr.spec.ts › Mobile Safari [unknown]
|
||||
library/modernizr.spec.ts › Safari Desktop [unknown]
|
||||
library/page-clock.frozen.spec.ts › clock should be frozen [unknown]
|
||||
@ -1541,7 +1554,7 @@ library/popup.spec.ts › should inherit viewport size from browser context [fai
|
||||
library/popup.spec.ts › should not dispatch binding on a closed page [fail]
|
||||
library/popup.spec.ts › should not throttle rAF in the opener page [timeout]
|
||||
library/popup.spec.ts › should not throw when click closes popup [timeout]
|
||||
library/popup.spec.ts › should respect routes from browser context [fail]
|
||||
library/popup.spec.ts › should respect routes from browser context [pass]
|
||||
library/popup.spec.ts › should respect routes from browser context when using window.open [pass]
|
||||
library/popup.spec.ts › should use viewport size from window features [timeout]
|
||||
library/proxy-pattern.spec.ts › socks proxy patter matcher [pass]
|
||||
@ -1568,22 +1581,22 @@ library/resource-timing.spec.ts › should work for SSL [fail]
|
||||
library/resource-timing.spec.ts › should work for redirect [pass]
|
||||
library/resource-timing.spec.ts › should work for subresource [pass]
|
||||
library/resource-timing.spec.ts › should work when serving from memory cache [pass]
|
||||
library/role-utils.spec.ts › accessible name nested treeitem [fail]
|
||||
library/role-utils.spec.ts › accessible name with slots [fail]
|
||||
library/role-utils.spec.ts › accessible name nested treeitem [pass]
|
||||
library/role-utils.spec.ts › accessible name with slots [pass]
|
||||
library/role-utils.spec.ts › axe-core accessible-text [fail]
|
||||
library/role-utils.spec.ts › axe-core implicit-role [fail]
|
||||
library/role-utils.spec.ts › control embedded in a label [fail]
|
||||
library/role-utils.spec.ts › control embedded in a target element [fail]
|
||||
library/role-utils.spec.ts › display:contents should be visible when contents are visible [fail]
|
||||
library/role-utils.spec.ts › label/labelled-by aria-hidden with descendants [fail]
|
||||
library/role-utils.spec.ts › native controls [fail]
|
||||
library/role-utils.spec.ts › native controls labelled-by [fail]
|
||||
library/role-utils.spec.ts › own aria-label concatenated with aria-labelledby [fail]
|
||||
library/role-utils.spec.ts › should ignore stylesheet from hidden aria-labelledby subtree [fail]
|
||||
library/role-utils.spec.ts › should not include hidden pseudo into accessible name [fail]
|
||||
library/role-utils.spec.ts › should work with form and tricky input names [fail]
|
||||
library/role-utils.spec.ts › svg role=presentation [fail]
|
||||
library/role-utils.spec.ts › svg title [fail]
|
||||
library/role-utils.spec.ts › axe-core implicit-role [pass]
|
||||
library/role-utils.spec.ts › control embedded in a label [pass]
|
||||
library/role-utils.spec.ts › control embedded in a target element [pass]
|
||||
library/role-utils.spec.ts › display:contents should be visible when contents are visible [pass]
|
||||
library/role-utils.spec.ts › label/labelled-by aria-hidden with descendants [pass]
|
||||
library/role-utils.spec.ts › native controls [pass]
|
||||
library/role-utils.spec.ts › native controls labelled-by [pass]
|
||||
library/role-utils.spec.ts › own aria-label concatenated with aria-labelledby [pass]
|
||||
library/role-utils.spec.ts › should ignore stylesheet from hidden aria-labelledby subtree [pass]
|
||||
library/role-utils.spec.ts › should not include hidden pseudo into accessible name [pass]
|
||||
library/role-utils.spec.ts › should work with form and tricky input names [pass]
|
||||
library/role-utils.spec.ts › svg role=presentation [pass]
|
||||
library/role-utils.spec.ts › svg title [pass]
|
||||
library/role-utils.spec.ts › wpt accname #0 [pass]
|
||||
library/role-utils.spec.ts › wpt accname #1 [pass]
|
||||
library/role-utils.spec.ts › wpt accname #2 [fail]
|
||||
@ -1610,8 +1623,10 @@ library/route-web-socket.spec.ts › pass-through › should work with text mess
|
||||
library/route-web-socket.spec.ts › should emit close upon frame detach [pass]
|
||||
library/route-web-socket.spec.ts › should emit close upon frame navigation [pass]
|
||||
library/route-web-socket.spec.ts › should not throw after page closure [pass]
|
||||
library/route-web-socket.spec.ts › should not throw with empty handler [pass]
|
||||
library/route-web-socket.spec.ts › should pattern match [pass]
|
||||
library/route-web-socket.spec.ts › should route on context [pass]
|
||||
library/route-web-socket.spec.ts › should throw when connecting twice [pass]
|
||||
library/route-web-socket.spec.ts › should work with server [pass]
|
||||
library/route-web-socket.spec.ts › should work with ws.close [pass]
|
||||
library/route-web-socket.spec.ts › should work without server [pass]
|
||||
@ -1622,16 +1637,16 @@ library/screenshot.spec.ts › element screenshot › page screenshot should cap
|
||||
library/screenshot.spec.ts › element screenshot › should capture full element when larger than viewport with device scale factor [fail]
|
||||
library/screenshot.spec.ts › element screenshot › should capture full element when larger than viewport with device scale factor and scale:css [fail]
|
||||
library/screenshot.spec.ts › element screenshot › should restore default viewport after fullPage screenshot [pass]
|
||||
library/screenshot.spec.ts › element screenshot › should restore viewport after element screenshot and exception [fail]
|
||||
library/screenshot.spec.ts › element screenshot › should restore viewport after element screenshot and exception [pass]
|
||||
library/screenshot.spec.ts › element screenshot › should restore viewport after page screenshot and exception [pass]
|
||||
library/screenshot.spec.ts › element screenshot › should restore viewport after page screenshot and timeout [pass]
|
||||
library/screenshot.spec.ts › element screenshot › should take element screenshot when default viewport is null and restore back [fail]
|
||||
library/screenshot.spec.ts › element screenshot › should take element screenshot when default viewport is null and restore back [pass]
|
||||
library/screenshot.spec.ts › element screenshot › should take fullPage screenshots when default viewport is null [pass]
|
||||
library/screenshot.spec.ts › element screenshot › should take screenshots when default viewport is null [fail]
|
||||
library/screenshot.spec.ts › element screenshot › should take screenshots when default viewport is null [pass]
|
||||
library/screenshot.spec.ts › element screenshot › should work if the main resource hangs [fail]
|
||||
library/screenshot.spec.ts › page screenshot › should handle vh units [pass]
|
||||
library/screenshot.spec.ts › page screenshot › should run in parallel in multiple pages [fail]
|
||||
library/screenshot.spec.ts › page screenshot › should throw if screenshot size is too large with device scale factor [fail]
|
||||
library/screenshot.spec.ts › page screenshot › should throw if screenshot size is too large with device scale factor [pass]
|
||||
library/screenshot.spec.ts › page screenshot › should work with a mobile viewport [fail]
|
||||
library/screenshot.spec.ts › page screenshot › should work with a mobile viewport and clip [fail]
|
||||
library/screenshot.spec.ts › page screenshot › should work with a mobile viewport and fullPage [fail]
|
||||
@ -1646,16 +1661,16 @@ library/selector-generator.spec.ts › selector generator › should chain text
|
||||
library/selector-generator.spec.ts › selector generator › should escape text with quote [fail]
|
||||
library/selector-generator.spec.ts › selector generator › should escape text with slash [fail]
|
||||
library/selector-generator.spec.ts › selector generator › should find text in shadow dom [fail]
|
||||
library/selector-generator.spec.ts › selector generator › should generate exact label when necessary [fail]
|
||||
library/selector-generator.spec.ts › selector generator › should generate exact label when necessary [pass]
|
||||
library/selector-generator.spec.ts › selector generator › should generate exact placeholder when necessary [fail]
|
||||
library/selector-generator.spec.ts › selector generator › should generate exact role when necessary [fail]
|
||||
library/selector-generator.spec.ts › selector generator › should generate exact text when necessary [fail]
|
||||
library/selector-generator.spec.ts › selector generator › should generate exact title when necessary [fail]
|
||||
library/selector-generator.spec.ts › selector generator › should generate label selector [fail]
|
||||
library/selector-generator.spec.ts › selector generator › should generate multiple: noId [fail]
|
||||
library/selector-generator.spec.ts › selector generator › should generate multiple: noId noText [fail]
|
||||
library/selector-generator.spec.ts › selector generator › should generate multiple: noText in role [fail]
|
||||
library/selector-generator.spec.ts › selector generator › should generate multiple: noText in text [fail]
|
||||
library/selector-generator.spec.ts › selector generator › should generate multiple: noId [pass]
|
||||
library/selector-generator.spec.ts › selector generator › should generate multiple: noId noText [pass]
|
||||
library/selector-generator.spec.ts › selector generator › should generate multiple: noText in role [pass]
|
||||
library/selector-generator.spec.ts › selector generator › should generate multiple: noText in text [pass]
|
||||
library/selector-generator.spec.ts › selector generator › should generate relative selector [fail]
|
||||
library/selector-generator.spec.ts › selector generator › should generate text and normalize whitespace [fail]
|
||||
library/selector-generator.spec.ts › selector generator › should generate text for <input type=button> [fail]
|
||||
@ -1691,8 +1706,8 @@ library/selector-generator.spec.ts › selector generator › should try to impr
|
||||
library/selector-generator.spec.ts › selector generator › should try to improve role name [fail]
|
||||
library/selector-generator.spec.ts › selector generator › should try to improve text [fail]
|
||||
library/selector-generator.spec.ts › selector generator › should try to improve text by shortening [fail]
|
||||
library/selector-generator.spec.ts › selector generator › should use data-testid in strict errors [fail]
|
||||
library/selector-generator.spec.ts › selector generator › should use internal:has-text [fail]
|
||||
library/selector-generator.spec.ts › selector generator › should use data-testid in strict errors [pass]
|
||||
library/selector-generator.spec.ts › selector generator › should use internal:has-text [pass]
|
||||
library/selector-generator.spec.ts › selector generator › should use internal:has-text with regexp [fail]
|
||||
library/selector-generator.spec.ts › selector generator › should use internal:has-text with regexp with a quote [fail]
|
||||
library/selector-generator.spec.ts › selector generator › should use nested ordinals [fail]
|
||||
@ -1700,16 +1715,16 @@ library/selector-generator.spec.ts › selector generator › should use ordinal
|
||||
library/selector-generator.spec.ts › selector generator › should use parent text [fail]
|
||||
library/selector-generator.spec.ts › selector generator › should use readable id [fail]
|
||||
library/selector-generator.spec.ts › selector generator › should use the name attributes for elements that can have it [fail]
|
||||
library/selector-generator.spec.ts › selector generator › should work in dynamic iframes without navigation [fail]
|
||||
library/selector-generator.spec.ts › selector generator › should work in dynamic iframes without navigation [pass]
|
||||
library/selector-generator.spec.ts › selector generator › should work with tricky attributes [fail]
|
||||
library/selector-generator.spec.ts › selector generator › should work without CSS.escape [fail]
|
||||
library/selectors-register.spec.ts › should handle errors [pass]
|
||||
library/selectors-register.spec.ts › should not rely on engines working from the root [fail]
|
||||
library/selectors-register.spec.ts › should not rely on engines working from the root [pass]
|
||||
library/selectors-register.spec.ts › should throw a nice error if the selector returns a bad value [pass]
|
||||
library/selectors-register.spec.ts › should work [fail]
|
||||
library/selectors-register.spec.ts › should work in main and isolated world [fail]
|
||||
library/selectors-register.spec.ts › should work when registered on global [fail]
|
||||
library/selectors-register.spec.ts › should work with path [fail]
|
||||
library/selectors-register.spec.ts › should work [pass]
|
||||
library/selectors-register.spec.ts › should work in main and isolated world [pass]
|
||||
library/selectors-register.spec.ts › should work when registered on global [pass]
|
||||
library/selectors-register.spec.ts › should work with path [pass]
|
||||
library/shared-worker.spec.ts › should survive shared worker restart [pass]
|
||||
library/signals.spec.ts › should close the browser when the node process closes [timeout]
|
||||
library/signals.spec.ts › should remove temp dir on process.exit [timeout]
|
||||
@ -1721,64 +1736,64 @@ library/signals.spec.ts › signals › should kill the browser on SIGTERM + SIG
|
||||
library/signals.spec.ts › signals › should kill the browser on double SIGINT and remove temp dir [timeout]
|
||||
library/signals.spec.ts › signals › should not prevent default SIGTERM handling after browser close [timeout]
|
||||
library/signals.spec.ts › signals › should report browser close signal 2 [timeout]
|
||||
library/slowmo.spec.ts › slowMo › ElementHandle SlowMo check [fail]
|
||||
library/slowmo.spec.ts › slowMo › ElementHandle SlowMo click [fail]
|
||||
library/slowmo.spec.ts › slowMo › ElementHandle SlowMo dblclick [fail]
|
||||
library/slowmo.spec.ts › slowMo › ElementHandle SlowMo dispatchEvent [fail]
|
||||
library/slowmo.spec.ts › slowMo › ElementHandle SlowMo fill [fail]
|
||||
library/slowmo.spec.ts › slowMo › ElementHandle SlowMo focus [fail]
|
||||
library/slowmo.spec.ts › slowMo › ElementHandle SlowMo hover [fail]
|
||||
library/slowmo.spec.ts › slowMo › ElementHandle SlowMo press [fail]
|
||||
library/slowmo.spec.ts › slowMo › ElementHandle SlowMo selectOption [fail]
|
||||
library/slowmo.spec.ts › slowMo › ElementHandle SlowMo check [pass]
|
||||
library/slowmo.spec.ts › slowMo › ElementHandle SlowMo click [pass]
|
||||
library/slowmo.spec.ts › slowMo › ElementHandle SlowMo dblclick [pass]
|
||||
library/slowmo.spec.ts › slowMo › ElementHandle SlowMo dispatchEvent [pass]
|
||||
library/slowmo.spec.ts › slowMo › ElementHandle SlowMo fill [pass]
|
||||
library/slowmo.spec.ts › slowMo › ElementHandle SlowMo focus [pass]
|
||||
library/slowmo.spec.ts › slowMo › ElementHandle SlowMo hover [pass]
|
||||
library/slowmo.spec.ts › slowMo › ElementHandle SlowMo press [pass]
|
||||
library/slowmo.spec.ts › slowMo › ElementHandle SlowMo selectOption [pass]
|
||||
library/slowmo.spec.ts › slowMo › ElementHandle SlowMo setInputFiles [fail]
|
||||
library/slowmo.spec.ts › slowMo › ElementHandle SlowMo type [fail]
|
||||
library/slowmo.spec.ts › slowMo › ElementHandle SlowMo uncheck [fail]
|
||||
library/slowmo.spec.ts › slowMo › ElementHandle SlowMo type [pass]
|
||||
library/slowmo.spec.ts › slowMo › ElementHandle SlowMo uncheck [pass]
|
||||
library/slowmo.spec.ts › slowMo › Frame SlowMo check [fail]
|
||||
library/slowmo.spec.ts › slowMo › Frame SlowMo click [fail]
|
||||
library/slowmo.spec.ts › slowMo › Frame SlowMo dblclick [fail]
|
||||
library/slowmo.spec.ts › slowMo › Frame SlowMo dispatchEvent [fail]
|
||||
library/slowmo.spec.ts › slowMo › Frame SlowMo fill [fail]
|
||||
library/slowmo.spec.ts › slowMo › Frame SlowMo focus [fail]
|
||||
library/slowmo.spec.ts › slowMo › Frame SlowMo goto [fail]
|
||||
library/slowmo.spec.ts › slowMo › Frame SlowMo hover [fail]
|
||||
library/slowmo.spec.ts › slowMo › Frame SlowMo press [fail]
|
||||
library/slowmo.spec.ts › slowMo › Frame SlowMo selectOption [fail]
|
||||
library/slowmo.spec.ts › slowMo › Frame SlowMo click [pass]
|
||||
library/slowmo.spec.ts › slowMo › Frame SlowMo dblclick [pass]
|
||||
library/slowmo.spec.ts › slowMo › Frame SlowMo dispatchEvent [pass]
|
||||
library/slowmo.spec.ts › slowMo › Frame SlowMo fill [pass]
|
||||
library/slowmo.spec.ts › slowMo › Frame SlowMo focus [pass]
|
||||
library/slowmo.spec.ts › slowMo › Frame SlowMo goto [pass]
|
||||
library/slowmo.spec.ts › slowMo › Frame SlowMo hover [pass]
|
||||
library/slowmo.spec.ts › slowMo › Frame SlowMo press [pass]
|
||||
library/slowmo.spec.ts › slowMo › Frame SlowMo selectOption [pass]
|
||||
library/slowmo.spec.ts › slowMo › Frame SlowMo setInputFiles [fail]
|
||||
library/slowmo.spec.ts › slowMo › Frame SlowMo type [fail]
|
||||
library/slowmo.spec.ts › slowMo › Frame SlowMo type [pass]
|
||||
library/slowmo.spec.ts › slowMo › Frame SlowMo uncheck [fail]
|
||||
library/slowmo.spec.ts › slowMo › Page SlowMo check [fail]
|
||||
library/slowmo.spec.ts › slowMo › Page SlowMo click [fail]
|
||||
library/slowmo.spec.ts › slowMo › Page SlowMo dblclick [fail]
|
||||
library/slowmo.spec.ts › slowMo › Page SlowMo dispatchEvent [fail]
|
||||
library/slowmo.spec.ts › slowMo › Page SlowMo fill [fail]
|
||||
library/slowmo.spec.ts › slowMo › Page SlowMo focus [fail]
|
||||
library/slowmo.spec.ts › slowMo › Page SlowMo goto [fail]
|
||||
library/slowmo.spec.ts › slowMo › Page SlowMo hover [fail]
|
||||
library/slowmo.spec.ts › slowMo › Page SlowMo press [fail]
|
||||
library/slowmo.spec.ts › slowMo › Page SlowMo reload [fail]
|
||||
library/slowmo.spec.ts › slowMo › Page SlowMo selectOption [fail]
|
||||
library/slowmo.spec.ts › slowMo › Page SlowMo check [pass]
|
||||
library/slowmo.spec.ts › slowMo › Page SlowMo click [pass]
|
||||
library/slowmo.spec.ts › slowMo › Page SlowMo dblclick [pass]
|
||||
library/slowmo.spec.ts › slowMo › Page SlowMo dispatchEvent [pass]
|
||||
library/slowmo.spec.ts › slowMo › Page SlowMo fill [pass]
|
||||
library/slowmo.spec.ts › slowMo › Page SlowMo focus [pass]
|
||||
library/slowmo.spec.ts › slowMo › Page SlowMo goto [pass]
|
||||
library/slowmo.spec.ts › slowMo › Page SlowMo hover [pass]
|
||||
library/slowmo.spec.ts › slowMo › Page SlowMo press [pass]
|
||||
library/slowmo.spec.ts › slowMo › Page SlowMo reload [pass]
|
||||
library/slowmo.spec.ts › slowMo › Page SlowMo selectOption [pass]
|
||||
library/slowmo.spec.ts › slowMo › Page SlowMo setInputFiles [fail]
|
||||
library/slowmo.spec.ts › slowMo › Page SlowMo type [fail]
|
||||
library/slowmo.spec.ts › slowMo › Page SlowMo uncheck [fail]
|
||||
library/snapshotter.spec.ts › snapshots › empty adopted style sheets should not prevent node refs [fail]
|
||||
library/slowmo.spec.ts › slowMo › Page SlowMo type [pass]
|
||||
library/slowmo.spec.ts › slowMo › Page SlowMo uncheck [pass]
|
||||
library/snapshotter.spec.ts › snapshots › empty adopted style sheets should not prevent node refs [pass]
|
||||
library/snapshotter.spec.ts › snapshots › should capture frame [pass]
|
||||
library/snapshotter.spec.ts › snapshots › should capture iframe [pass]
|
||||
library/snapshotter.spec.ts › snapshots › should capture iframe with srcdoc [pass]
|
||||
library/snapshotter.spec.ts › snapshots › should capture resources [fail]
|
||||
library/snapshotter.spec.ts › snapshots › should capture resources [pass]
|
||||
library/snapshotter.spec.ts › snapshots › should capture snapshot target [fail]
|
||||
library/snapshotter.spec.ts › snapshots › should collect multiple [fail]
|
||||
library/snapshotter.spec.ts › snapshots › should collect on attribute change [fail]
|
||||
library/snapshotter.spec.ts › snapshots › should collect snapshot [fail]
|
||||
library/snapshotter.spec.ts › snapshots › should have a custom doctype [fail]
|
||||
library/snapshotter.spec.ts › snapshots › should collect multiple [pass]
|
||||
library/snapshotter.spec.ts › snapshots › should collect on attribute change [pass]
|
||||
library/snapshotter.spec.ts › snapshots › should collect snapshot [pass]
|
||||
library/snapshotter.spec.ts › snapshots › should have a custom doctype [pass]
|
||||
library/snapshotter.spec.ts › snapshots › should not navigate on anchor clicks [fail]
|
||||
library/snapshotter.spec.ts › snapshots › should preserve BASE and other content on reset [pass]
|
||||
library/snapshotter.spec.ts › snapshots › should replace meta charset attr that specifies charset [fail]
|
||||
library/snapshotter.spec.ts › snapshots › should replace meta content attr that specifies charset [fail]
|
||||
library/snapshotter.spec.ts › snapshots › should respect CSSOM change through CSSGroupingRule [fail]
|
||||
library/snapshotter.spec.ts › snapshots › should respect attr removal [fail]
|
||||
library/snapshotter.spec.ts › snapshots › should respect inline CSSOM change [fail]
|
||||
library/snapshotter.spec.ts › snapshots › should respect node removal [fail]
|
||||
library/snapshotter.spec.ts › snapshots › should respect subresource CSSOM change [fail]
|
||||
library/snapshotter.spec.ts › snapshots › should replace meta charset attr that specifies charset [pass]
|
||||
library/snapshotter.spec.ts › snapshots › should replace meta content attr that specifies charset [pass]
|
||||
library/snapshotter.spec.ts › snapshots › should respect CSSOM change through CSSGroupingRule [pass]
|
||||
library/snapshotter.spec.ts › snapshots › should respect attr removal [pass]
|
||||
library/snapshotter.spec.ts › snapshots › should respect inline CSSOM change [pass]
|
||||
library/snapshotter.spec.ts › snapshots › should respect node removal [pass]
|
||||
library/snapshotter.spec.ts › snapshots › should respect subresource CSSOM change [pass]
|
||||
library/tap.spec.ts › locators › should send all of the correct events [fail]
|
||||
library/tap.spec.ts › should not send mouse events touchstart is canceled [fail]
|
||||
library/tap.spec.ts › should not send mouse events when touchend is canceled [fail]
|
||||
@ -1790,94 +1805,95 @@ library/tap.spec.ts › should work with modifiers [fail]
|
||||
library/tap.spec.ts › trial run should not tap [fail]
|
||||
library/trace-viewer.spec.ts › should allow hiding route actions [unknown]
|
||||
library/trace-viewer.spec.ts › should allow showing screenshots instead of snapshots [unknown]
|
||||
library/trace-viewer.spec.ts › should capture data-url svg iframe [unknown]
|
||||
library/trace-viewer.spec.ts › should capture iframe with sandbox attribute [unknown]
|
||||
library/trace-viewer.spec.ts › should complain about newer version of trace in old viewer [unknown]
|
||||
library/trace-viewer.spec.ts › should contain action info [fail]
|
||||
library/trace-viewer.spec.ts › should contain adopted style sheets [fail]
|
||||
library/trace-viewer.spec.ts › should display language-specific locators [unknown]
|
||||
library/trace-viewer.spec.ts › should display waitForLoadState even if did not wait for it [unknown]
|
||||
library/trace-viewer.spec.ts › should filter network requests by resource type [fail]
|
||||
library/trace-viewer.spec.ts › should filter network requests by url [unknown]
|
||||
library/trace-viewer.spec.ts › should follow redirects [unknown]
|
||||
library/trace-viewer.spec.ts › should capture data-url svg iframe [fail]
|
||||
library/trace-viewer.spec.ts › should capture iframe with sandbox attribute [pass]
|
||||
library/trace-viewer.spec.ts › should complain about newer version of trace in old viewer [pass]
|
||||
library/trace-viewer.spec.ts › should contain action info [pass]
|
||||
library/trace-viewer.spec.ts › should contain adopted style sheets [pass]
|
||||
library/trace-viewer.spec.ts › should display language-specific locators [pass]
|
||||
library/trace-viewer.spec.ts › should display waitForLoadState even if did not wait for it [pass]
|
||||
library/trace-viewer.spec.ts › should filter network requests by resource type [pass]
|
||||
library/trace-viewer.spec.ts › should filter network requests by url [pass]
|
||||
library/trace-viewer.spec.ts › should follow redirects [fail]
|
||||
library/trace-viewer.spec.ts › should handle case where neither snapshots nor screenshots exist [fail]
|
||||
library/trace-viewer.spec.ts › should handle file URIs [fail]
|
||||
library/trace-viewer.spec.ts › should handle multiple headers [unknown]
|
||||
library/trace-viewer.spec.ts › should handle src=blob [unknown]
|
||||
library/trace-viewer.spec.ts › should handle multiple headers [fail]
|
||||
library/trace-viewer.spec.ts › should handle src=blob [fail]
|
||||
library/trace-viewer.spec.ts › should have correct snapshot size [fail]
|
||||
library/trace-viewer.spec.ts › should have correct stack trace [unknown]
|
||||
library/trace-viewer.spec.ts › should have network request overrides [fail]
|
||||
library/trace-viewer.spec.ts › should have network request overrides 2 [unknown]
|
||||
library/trace-viewer.spec.ts › should have network requests [unknown]
|
||||
library/trace-viewer.spec.ts › should highlight expect failure [unknown]
|
||||
library/trace-viewer.spec.ts › should highlight locator in iframe while typing [unknown]
|
||||
library/trace-viewer.spec.ts › should highlight target element in shadow dom [unknown]
|
||||
library/trace-viewer.spec.ts › should highlight target elements [fail]
|
||||
library/trace-viewer.spec.ts › should ignore 304 responses [unknown]
|
||||
library/trace-viewer.spec.ts › should include metainfo [unknown]
|
||||
library/trace-viewer.spec.ts › should highlight expect failure [pass]
|
||||
library/trace-viewer.spec.ts › should highlight locator in iframe while typing [fail]
|
||||
library/trace-viewer.spec.ts › should highlight target element in shadow dom [pass]
|
||||
library/trace-viewer.spec.ts › should highlight target elements [pass]
|
||||
library/trace-viewer.spec.ts › should ignore 304 responses [fail]
|
||||
library/trace-viewer.spec.ts › should include metainfo [pass]
|
||||
library/trace-viewer.spec.ts › should include requestUrl in route.abort [unknown]
|
||||
library/trace-viewer.spec.ts › should include requestUrl in route.continue [unknown]
|
||||
library/trace-viewer.spec.ts › should include requestUrl in route.fulfill [unknown]
|
||||
library/trace-viewer.spec.ts › should not crash with broken locator [fail]
|
||||
library/trace-viewer.spec.ts › should not crash with broken locator [pass]
|
||||
library/trace-viewer.spec.ts › should not record route actions [pass]
|
||||
library/trace-viewer.spec.ts › should open console errors on click [fail]
|
||||
library/trace-viewer.spec.ts › should open simple trace viewer [fail]
|
||||
library/trace-viewer.spec.ts › should open snapshot in new browser context [unknown]
|
||||
library/trace-viewer.spec.ts › should open simple trace viewer [pass]
|
||||
library/trace-viewer.spec.ts › should open snapshot in new browser context [pass]
|
||||
library/trace-viewer.spec.ts › should open trace viewer on specific host [unknown]
|
||||
library/trace-viewer.spec.ts › should open trace-1.31 [unknown]
|
||||
library/trace-viewer.spec.ts › should open trace-1.37 [fail]
|
||||
library/trace-viewer.spec.ts › should open two trace files [fail]
|
||||
library/trace-viewer.spec.ts › should open two trace files of the same test [unknown]
|
||||
library/trace-viewer.spec.ts › should open trace-1.31 [pass]
|
||||
library/trace-viewer.spec.ts › should open trace-1.37 [pass]
|
||||
library/trace-viewer.spec.ts › should open two trace files [pass]
|
||||
library/trace-viewer.spec.ts › should open two trace files of the same test [pass]
|
||||
library/trace-viewer.spec.ts › should open two trace viewers [unknown]
|
||||
library/trace-viewer.spec.ts › should pick locator [fail]
|
||||
library/trace-viewer.spec.ts › should pick locator [pass]
|
||||
library/trace-viewer.spec.ts › should pick locator in iframe [fail]
|
||||
library/trace-viewer.spec.ts › should popup snapshot [fail]
|
||||
library/trace-viewer.spec.ts › should prefer later resource request with the same method [unknown]
|
||||
library/trace-viewer.spec.ts › should preserve currentSrc [unknown]
|
||||
library/trace-viewer.spec.ts › should preserve noscript when javascript is disabled [unknown]
|
||||
library/trace-viewer.spec.ts › should properly synchronize local and remote time [unknown]
|
||||
library/trace-viewer.spec.ts › should register custom elements [unknown]
|
||||
library/trace-viewer.spec.ts › should remove noscript by default [fail]
|
||||
library/trace-viewer.spec.ts › should remove noscript when javaScriptEnabled is set to true [unknown]
|
||||
library/trace-viewer.spec.ts › should render console [unknown]
|
||||
library/trace-viewer.spec.ts › should render network bars [unknown]
|
||||
library/trace-viewer.spec.ts › should restore control values [unknown]
|
||||
library/trace-viewer.spec.ts › should restore scroll positions [unknown]
|
||||
library/trace-viewer.spec.ts › should serve css without content-type [unknown]
|
||||
library/trace-viewer.spec.ts › should popup snapshot [pass]
|
||||
library/trace-viewer.spec.ts › should prefer later resource request with the same method [fail]
|
||||
library/trace-viewer.spec.ts › should preserve currentSrc [fail]
|
||||
library/trace-viewer.spec.ts › should preserve noscript when javascript is disabled [pass]
|
||||
library/trace-viewer.spec.ts › should properly synchronize local and remote time [pass]
|
||||
library/trace-viewer.spec.ts › should register custom elements [pass]
|
||||
library/trace-viewer.spec.ts › should remove noscript by default [pass]
|
||||
library/trace-viewer.spec.ts › should remove noscript when javaScriptEnabled is set to true [pass]
|
||||
library/trace-viewer.spec.ts › should render console [fail]
|
||||
library/trace-viewer.spec.ts › should render network bars [pass]
|
||||
library/trace-viewer.spec.ts › should restore control values [fail]
|
||||
library/trace-viewer.spec.ts › should restore scroll positions [pass]
|
||||
library/trace-viewer.spec.ts › should serve css without content-type [timeout]
|
||||
library/trace-viewer.spec.ts › should serve overridden request [fail]
|
||||
library/trace-viewer.spec.ts › should show action source [fail]
|
||||
library/trace-viewer.spec.ts › should show baseURL in metadata pane [fail]
|
||||
library/trace-viewer.spec.ts › should show correct request start time [unknown]
|
||||
library/trace-viewer.spec.ts › should show action source [pass]
|
||||
library/trace-viewer.spec.ts › should show baseURL in metadata pane [pass]
|
||||
library/trace-viewer.spec.ts › should show correct request start time [fail]
|
||||
library/trace-viewer.spec.ts › should show empty trace viewer [fail]
|
||||
library/trace-viewer.spec.ts › should show font preview [unknown]
|
||||
library/trace-viewer.spec.ts › should show font preview [fail]
|
||||
library/trace-viewer.spec.ts › should show null as a param [unknown]
|
||||
library/trace-viewer.spec.ts › should show only one pointer with multilevel iframes [unknown]
|
||||
library/trace-viewer.spec.ts › should show only one pointer with multilevel iframes [pass]
|
||||
library/trace-viewer.spec.ts › should show params and return value [unknown]
|
||||
library/trace-viewer.spec.ts › should show similar actions from library-only trace [fail]
|
||||
library/trace-viewer.spec.ts › should show similar actions from library-only trace [pass]
|
||||
library/trace-viewer.spec.ts › should show snapshot URL [unknown]
|
||||
library/trace-viewer.spec.ts › should update highlight when typing [unknown]
|
||||
library/trace-viewer.spec.ts › should work with adopted style sheets and all: unset [unknown]
|
||||
library/trace-viewer.spec.ts › should work with adopted style sheets and replace/replaceSync [unknown]
|
||||
library/trace-viewer.spec.ts › should update highlight when typing [pass]
|
||||
library/trace-viewer.spec.ts › should work with adopted style sheets and all: unset [pass]
|
||||
library/trace-viewer.spec.ts › should work with adopted style sheets and replace/replaceSync [pass]
|
||||
library/trace-viewer.spec.ts › should work with meta CSP [fail]
|
||||
library/trace-viewer.spec.ts › should work with nesting CSS selectors [fail]
|
||||
library/trace-viewer.spec.ts › should work with nesting CSS selectors [pass]
|
||||
library/tracing.spec.ts › should collect sources [fail]
|
||||
library/tracing.spec.ts › should collect trace with resources, but no js [fail]
|
||||
library/tracing.spec.ts › should collect two traces [fail]
|
||||
library/tracing.spec.ts › should collect two traces [pass]
|
||||
library/tracing.spec.ts › should exclude internal pages [pass]
|
||||
library/tracing.spec.ts › should export trace concurrently to second navigation [pass]
|
||||
library/tracing.spec.ts › should flush console events on tracing stop [pass]
|
||||
library/tracing.spec.ts › should hide internal stack frames [fail]
|
||||
library/tracing.spec.ts › should hide internal stack frames in expect [fail]
|
||||
library/tracing.spec.ts › should hide internal stack frames [pass]
|
||||
library/tracing.spec.ts › should hide internal stack frames in expect [pass]
|
||||
library/tracing.spec.ts › should ignore iframes in head [pass]
|
||||
library/tracing.spec.ts › should include context API requests [pass]
|
||||
library/tracing.spec.ts › should include interrupted actions [fail]
|
||||
library/tracing.spec.ts › should not collect snapshots by default [fail]
|
||||
library/tracing.spec.ts › should include interrupted actions [pass]
|
||||
library/tracing.spec.ts › should not collect snapshots by default [pass]
|
||||
library/tracing.spec.ts › should not crash when browser closes mid-trace [pass]
|
||||
library/tracing.spec.ts › should not emit after w/o before [pass]
|
||||
library/tracing.spec.ts › should not flush console events [pass]
|
||||
library/tracing.spec.ts › should not hang for clicks that open dialogs [fail]
|
||||
library/tracing.spec.ts › should not hang for clicks that open dialogs [pass]
|
||||
library/tracing.spec.ts › should not include buffers in the trace [pass]
|
||||
library/tracing.spec.ts › should not include trace resources from the previous chunks [fail]
|
||||
library/tracing.spec.ts › should not stall on dialogs [fail]
|
||||
library/tracing.spec.ts › should not stall on dialogs [pass]
|
||||
library/tracing.spec.ts › should not throw when stopping without start but not exporting [pass]
|
||||
library/tracing.spec.ts › should overwrite existing file [fail]
|
||||
library/tracing.spec.ts › should produce screencast frames crop [fail]
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user