diff --git a/tests/bidi/expectationReporter.ts b/tests/bidi/expectationReporter.ts new file mode 100644 index 0000000000..3e6e7db82d --- /dev/null +++ b/tests/bidi/expectationReporter.ts @@ -0,0 +1,76 @@ +/** + * Copyright (c) Microsoft Corporation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import type { + FullConfig, FullResult, Reporter, Suite, TestCase +} from '@playwright/test/reporter'; +import fs from 'fs'; +import { projectExpectationPath } from './expectationUtil'; + +type ReporterOptions = { + rebase?: boolean; +} + +class ExpectationReporter implements Reporter { + private _suite: Suite; + private _options: ReporterOptions; + + constructor(options: ReporterOptions) { + this._options = options; + } + + onBegin(config: FullConfig, suite: Suite) { + this._suite = suite; + } + + onEnd(result: FullResult) { + if (!this._options.rebase) + return; + for (const project of this._suite.suites) + this._updateProjectExpectations(project); + } + + private _updateProjectExpectations(project: Suite) { + const results = project.allTests().map(test => { + const outcome = getOutcome(test); + const line = `${test.titlePath().slice(1).join(' › ')} [${outcome}]`; + return line; + }); + const outputFile = projectExpectationPath(project.title); + console.log('Writing new expectations to', outputFile); + fs.writeFileSync(outputFile, results.join('\n')); + } + + printsToStdio(): boolean { + return false; + } +} + +function getOutcome(test: TestCase): 'unknown' | 'flaky' | 'pass' | 'fail' | 'timeout' { + if (test.results.length === 0) + return 'unknown'; + if (test.results.every(r => r.status === 'timedOut')) + return 'timeout'; + if (test.outcome() === 'expected') + return 'pass'; + if (test.outcome() === 'unexpected') + return 'fail'; + if (test.outcome() === 'flaky') + return 'flaky'; + return 'unknown'; +} + +export default ExpectationReporter; \ No newline at end of file diff --git a/tests/bidi/expectationUtil.ts b/tests/bidi/expectationUtil.ts new file mode 100644 index 0000000000..21e0d5fcbd --- /dev/null +++ b/tests/bidi/expectationUtil.ts @@ -0,0 +1,50 @@ +/** + * Copyright (c) Microsoft Corporation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import fs from 'fs'; +import path from 'path'; +import { TestInfo } from 'playwright/test'; + +type ShouldSkipPredicate = (info: TestInfo) => boolean; + +export async function parseBidiExpectations(projectName: string): Promise { + const filePath = projectExpectationPath(projectName); + try { + await fs.promises.access(filePath); + } catch (e) { + return () => false; + } + const content = await fs.promises.readFile(filePath); + const pairs = content.toString().split('\n').map(line => { + const match = /(?.+) \[(?[^\]]+)\]$/.exec(line); + if (!match) { + console.error('Bad expectation line: ' + line); + return undefined; + } + return [match.groups!.titlePath, match.groups!.expectation]; + }).filter(Boolean) as [string, string][]; + const expectationsMap = new Map(pairs); + + return (info: TestInfo) => { + const key = [info.project.name, ...info.titlePath].join(' › '); + const expectation = expectationsMap.get(key); + return expectation === 'fail' || expectation === 'timeout'; + } +} + +export function projectExpectationPath(project: string): string { + return path.join(__dirname, 'expectations', project + '.txt'); +} diff --git a/tests/bidi/expectations/bidi-chromium-library.txt b/tests/bidi/expectations/bidi-chromium-library.txt new file mode 100644 index 0000000000..c9d93d9031 --- /dev/null +++ b/tests/bidi/expectations/bidi-chromium-library.txt @@ -0,0 +1,1910 @@ +bidi-chromium-library › library/beforeunload.spec.ts › should close browser with beforeunload page [pass] +bidi-chromium-library › library/beforeunload.spec.ts › should close browsercontext with beforeunload page [pass] +bidi-chromium-library › library/beforeunload.spec.ts › should be able to navigate away from page with beforeunload [pass] +bidi-chromium-library › library/beforeunload.spec.ts › should close page with beforeunload listener [pass] +bidi-chromium-library › library/beforeunload.spec.ts › should run beforeunload if asked for @smoke [unknown] +bidi-chromium-library › library/beforeunload.spec.ts › should access page after beforeunload [unknown] +bidi-chromium-library › library/beforeunload.spec.ts › should not stall on evaluate when dismissing beforeunload [pass] +bidi-chromium-library › library/browser.spec.ts › should return browserType [pass] +bidi-chromium-library › library/browser.spec.ts › should create new page @smoke [pass] +bidi-chromium-library › library/browser.spec.ts › should throw upon second create new page [pass] +bidi-chromium-library › library/browser.spec.ts › version should work [fail] +bidi-chromium-library › library/browser.spec.ts › should dispatch page.on(close) upon browser.close and reject evaluate [fail] +bidi-chromium-library › library/browsercontext-add-cookies.spec.ts › should work @smoke [pass] +bidi-chromium-library › library/browsercontext-add-cookies.spec.ts › should work with expires=-1 [fail] +bidi-chromium-library › library/browsercontext-add-cookies.spec.ts › should add cookies with empty value [fail] +bidi-chromium-library › library/browsercontext-add-cookies.spec.ts › should roundtrip cookie [fail] +bidi-chromium-library › library/browsercontext-add-cookies.spec.ts › should send cookie header [pass] +bidi-chromium-library › library/browsercontext-add-cookies.spec.ts › should isolate cookies in browser contexts [pass] +bidi-chromium-library › library/browsercontext-add-cookies.spec.ts › should isolate session cookies [pass] +bidi-chromium-library › library/browsercontext-add-cookies.spec.ts › should isolate persistent cookies [pass] +bidi-chromium-library › library/browsercontext-add-cookies.spec.ts › should isolate send cookie header [pass] +bidi-chromium-library › library/browsercontext-add-cookies.spec.ts › should isolate cookies between launches [pass] +bidi-chromium-library › library/browsercontext-add-cookies.spec.ts › should set multiple cookies [pass] +bidi-chromium-library › library/browsercontext-add-cookies.spec.ts › should have |expires| set to |-1| for session cookies [pass] +bidi-chromium-library › library/browsercontext-add-cookies.spec.ts › should set cookie with reasonable defaults [fail] +bidi-chromium-library › library/browsercontext-add-cookies.spec.ts › should set a cookie with a path [pass] +bidi-chromium-library › library/browsercontext-add-cookies.spec.ts › should not set a cookie with blank page URL [pass] +bidi-chromium-library › library/browsercontext-add-cookies.spec.ts › should not set a cookie on a data URL page [pass] +bidi-chromium-library › library/browsercontext-add-cookies.spec.ts › should default to setting secure cookie for HTTPS websites [pass] +bidi-chromium-library › library/browsercontext-add-cookies.spec.ts › should be able to set unsecure cookie for HTTP website [pass] +bidi-chromium-library › library/browsercontext-add-cookies.spec.ts › should set a cookie on a different domain [pass] +bidi-chromium-library › library/browsercontext-add-cookies.spec.ts › should set cookies for a frame [pass] +bidi-chromium-library › library/browsercontext-add-cookies.spec.ts › should(not) block third party cookies [pass] +bidi-chromium-library › library/browsercontext-add-cookies.spec.ts › should not block third party SameSite=None cookies [fail] +bidi-chromium-library › library/browsercontext-add-cookies.spec.ts › should allow unnamed cookies [fail] +bidi-chromium-library › library/browsercontext-add-cookies.spec.ts › should set secure cookies on secure WebSocket [fail] +bidi-chromium-library › library/browsercontext-add-init-script.spec.ts › should work with browser context scripts @smoke [pass] +bidi-chromium-library › library/browsercontext-add-init-script.spec.ts › should work without navigation, after all bindings [fail] +bidi-chromium-library › library/browsercontext-add-init-script.spec.ts › should work without navigation in popup [fail] +bidi-chromium-library › library/browsercontext-add-init-script.spec.ts › should work with browser context scripts with a path [pass] +bidi-chromium-library › library/browsercontext-add-init-script.spec.ts › should work with browser context scripts for already created pages [pass] +bidi-chromium-library › library/browsercontext-base-url.spec.ts › should construct a new URL when a baseURL in browser.newContext is passed to page.goto @smoke [pass] +bidi-chromium-library › library/browsercontext-base-url.spec.ts › should construct a new URL when a baseURL in browser.newPage is passed to page.goto [pass] +bidi-chromium-library › library/browsercontext-base-url.spec.ts › should construct a new URL when a baseURL in browserType.launchPersistentContext is passed to page.goto [fail] +bidi-chromium-library › library/browsercontext-base-url.spec.ts › should construct the URLs correctly when a baseURL without a trailing slash in browser.newPage is passed to page.goto [pass] +bidi-chromium-library › library/browsercontext-base-url.spec.ts › should construct the URLs correctly when a baseURL with a trailing slash in browser.newPage is passed to page.goto [pass] +bidi-chromium-library › library/browsercontext-base-url.spec.ts › should not construct a new URL when valid URLs are passed [pass] +bidi-chromium-library › library/browsercontext-base-url.spec.ts › should be able to match a URL relative to its given URL with urlMatcher [fail] +bidi-chromium-library › library/browsercontext-base-url.spec.ts › should not construct a new URL with baseURL when a glob was used [pass] +bidi-chromium-library › library/browsercontext-basic.spec.ts › should create new context @smoke [pass] +bidi-chromium-library › library/browsercontext-basic.spec.ts › should be able to click across browser contexts [pass] +bidi-chromium-library › library/browsercontext-basic.spec.ts › window.open should use parent tab context [pass] +bidi-chromium-library › library/browsercontext-basic.spec.ts › should isolate localStorage and cookies @smoke [pass] +bidi-chromium-library › library/browsercontext-basic.spec.ts › should propagate default viewport to the page [pass] +bidi-chromium-library › library/browsercontext-basic.spec.ts › should make a copy of default viewport [pass] +bidi-chromium-library › library/browsercontext-basic.spec.ts › should respect deviceScaleFactor [pass] +bidi-chromium-library › library/browsercontext-basic.spec.ts › should not allow deviceScaleFactor with null viewport [pass] +bidi-chromium-library › library/browsercontext-basic.spec.ts › should not allow isMobile with null viewport [pass] +bidi-chromium-library › library/browsercontext-basic.spec.ts › close() should work for empty context [pass] +bidi-chromium-library › library/browsercontext-basic.spec.ts › close() should abort waitForEvent [pass] +bidi-chromium-library › library/browsercontext-basic.spec.ts › close() should be callable twice [pass] +bidi-chromium-library › library/browsercontext-basic.spec.ts › should pass self to close event [pass] +bidi-chromium-library › library/browsercontext-basic.spec.ts › should not report frameless pages on error [pass] +bidi-chromium-library › library/browsercontext-basic.spec.ts › should return all of the pages [pass] +bidi-chromium-library › library/browsercontext-basic.spec.ts › should close all belonging pages once closing context [pass] +bidi-chromium-library › library/browsercontext-basic.spec.ts › should disable javascript [fail] +bidi-chromium-library › library/browsercontext-basic.spec.ts › should be able to navigate after disabling javascript [pass] +bidi-chromium-library › library/browsercontext-basic.spec.ts › should not hang on promises after disabling javascript [pass] +bidi-chromium-library › library/browsercontext-basic.spec.ts › setContent should work after disabling javascript [pass] +bidi-chromium-library › library/browsercontext-basic.spec.ts › should work with offline option [fail] +bidi-chromium-library › library/browsercontext-basic.spec.ts › should emulate navigator.onLine [fail] +bidi-chromium-library › library/browsercontext-basic.spec.ts › should emulate media in popup [fail] +bidi-chromium-library › library/browsercontext-basic.spec.ts › should emulate media in cross-process iframe [fail] +bidi-chromium-library › library/browsercontext-basic.spec.ts › default user agent [pass] +bidi-chromium-library › library/browsercontext-clearcookies.spec.ts › should clear cookies [pass] +bidi-chromium-library › library/browsercontext-clearcookies.spec.ts › should isolate cookies when clearing [pass] +bidi-chromium-library › library/browsercontext-clearcookies.spec.ts › should remove cookies by name [fail] +bidi-chromium-library › library/browsercontext-clearcookies.spec.ts › should remove cookies by name regex [fail] +bidi-chromium-library › library/browsercontext-clearcookies.spec.ts › should remove cookies by domain [fail] +bidi-chromium-library › library/browsercontext-clearcookies.spec.ts › should remove cookies by path [fail] +bidi-chromium-library › library/browsercontext-clearcookies.spec.ts › should remove cookies by name and domain [fail] +bidi-chromium-library › library/browsercontext-cookies.spec.ts › should return no cookies in pristine browser context [pass] +bidi-chromium-library › library/browsercontext-cookies.spec.ts › should get a cookie @smoke [fail] +bidi-chromium-library › library/browsercontext-cookies.spec.ts › should get a non-session cookie [unknown] +bidi-chromium-library › library/browsercontext-cookies.spec.ts › should properly report httpOnly cookie [pass] +bidi-chromium-library › library/browsercontext-cookies.spec.ts › should properly report "Strict" sameSite cookie [unknown] +bidi-chromium-library › library/browsercontext-cookies.spec.ts › should properly report "Lax" sameSite cookie [pass] +bidi-chromium-library › library/browsercontext-cookies.spec.ts › should get multiple cookies [fail] +bidi-chromium-library › library/browsercontext-cookies.spec.ts › should get cookies from multiple urls [unknown] +bidi-chromium-library › library/browsercontext-cookies.spec.ts › should work with subdomain cookie [unknown] +bidi-chromium-library › library/browsercontext-cookies.spec.ts › should return cookies with empty value [unknown] +bidi-chromium-library › library/browsercontext-cookies.spec.ts › should return secure cookies based on HTTP(S) protocol [unknown] +bidi-chromium-library › library/browsercontext-cookies.spec.ts › should add cookies with an expiration [unknown] +bidi-chromium-library › library/browsercontext-cookies.spec.ts › should be able to send third party cookies via an iframe [unknown] +bidi-chromium-library › library/browsercontext-cookies.spec.ts › should support requestStorageAccess [unknown] +bidi-chromium-library › library/browsercontext-cookies.spec.ts › should parse cookie with large Max-Age correctly [unknown] +bidi-chromium-library › library/browsercontext-credentials.spec.ts › should fail without credentials [unknown] +bidi-chromium-library › library/browsercontext-credentials.spec.ts › should work with setHTTPCredentials [unknown] +bidi-chromium-library › library/browsercontext-credentials.spec.ts › should work with correct credentials @smoke [unknown] +bidi-chromium-library › library/browsercontext-credentials.spec.ts › should fail with wrong credentials [unknown] +bidi-chromium-library › library/browsercontext-credentials.spec.ts › should return resource body [unknown] +bidi-chromium-library › library/browsercontext-credentials.spec.ts › should work with correct credentials and matching origin [unknown] +bidi-chromium-library › library/browsercontext-credentials.spec.ts › should work with correct credentials and matching origin case insensitive [unknown] +bidi-chromium-library › library/browsercontext-credentials.spec.ts › should fail with correct credentials and mismatching scheme [unknown] +bidi-chromium-library › library/browsercontext-credentials.spec.ts › should fail with correct credentials and mismatching hostname [unknown] +bidi-chromium-library › library/browsercontext-credentials.spec.ts › should fail with correct credentials and mismatching port [unknown] +bidi-chromium-library › library/browsercontext-csp.spec.ts › should bypass CSP meta tag @smoke [unknown] +bidi-chromium-library › library/browsercontext-csp.spec.ts › should bypass CSP header [unknown] +bidi-chromium-library › library/browsercontext-csp.spec.ts › should bypass after cross-process navigation [unknown] +bidi-chromium-library › library/browsercontext-csp.spec.ts › should bypass CSP in iframes as well [unknown] +bidi-chromium-library › library/browsercontext-device.spec.ts › device › should work @smoke [unknown] +bidi-chromium-library › library/browsercontext-device.spec.ts › device › should support clicking [unknown] +bidi-chromium-library › library/browsercontext-device.spec.ts › device › should scroll to click [unknown] +bidi-chromium-library › library/browsercontext-device.spec.ts › device › should scroll twice when emulated [unknown] +bidi-chromium-library › library/browsercontext-device.spec.ts › device › should reset scroll top after a navigation [unknown] +bidi-chromium-library › library/browsercontext-device.spec.ts › device › should scroll to a precise position with mobile scale [unknown] +bidi-chromium-library › library/browsercontext-device.spec.ts › device › should emulate viewport and screen size [unknown] +bidi-chromium-library › library/browsercontext-device.spec.ts › device › should emulate viewport without screen size [unknown] +bidi-chromium-library › library/browsercontext-dsf.spec.ts › should fetch lodpi assets @smoke [unknown] +bidi-chromium-library › library/browsercontext-dsf.spec.ts › should fetch hidpi assets [unknown] +bidi-chromium-library › library/browsercontext-events.spec.ts › console event should work @smoke [unknown] +bidi-chromium-library › library/browsercontext-events.spec.ts › console event should work in popup [unknown] +bidi-chromium-library › library/browsercontext-events.spec.ts › console event should work in popup 2 [unknown] +bidi-chromium-library › library/browsercontext-events.spec.ts › console event should work in immediately closed popup [unknown] +bidi-chromium-library › library/browsercontext-events.spec.ts › dialog event should work @smoke [unknown] +bidi-chromium-library › library/browsercontext-events.spec.ts › dialog event should work in popup [unknown] +bidi-chromium-library › library/browsercontext-events.spec.ts › dialog event should work in popup 2 [unknown] +bidi-chromium-library › library/browsercontext-events.spec.ts › dialog event should work in immediately closed popup [unknown] +bidi-chromium-library › library/browsercontext-events.spec.ts › dialog event should work with inline script tag [unknown] +bidi-chromium-library › library/browsercontext-events.spec.ts › weberror event should work [unknown] +bidi-chromium-library › library/browsercontext-expose-function.spec.ts › expose binding should work [unknown] +bidi-chromium-library › library/browsercontext-expose-function.spec.ts › should work [unknown] +bidi-chromium-library › library/browsercontext-expose-function.spec.ts › should throw for duplicate registrations [unknown] +bidi-chromium-library › library/browsercontext-expose-function.spec.ts › should be callable from-inside addInitScript [unknown] +bidi-chromium-library › library/browsercontext-expose-function.spec.ts › exposeBindingHandle should work [unknown] +bidi-chromium-library › library/browsercontext-expose-function.spec.ts › should work with CSP [unknown] +bidi-chromium-library › library/browsercontext-fetch-algorithms.spec.ts › algorithms › gzip decompression › should support decompression [unknown] +bidi-chromium-library › library/browsercontext-fetch-algorithms.spec.ts › algorithms › gzip decompression › should not fail if response content-length header is missing (gzip) [unknown] +bidi-chromium-library › library/browsercontext-fetch-algorithms.spec.ts › algorithms › gzip decompression › should not fail with chunked responses (without Content-Length header) [unknown] +bidi-chromium-library › library/browsercontext-fetch-algorithms.spec.ts › algorithms › gzip decompression › should not fail with an empty response without content-length header (Z_BUF_ERROR) [unknown] +bidi-chromium-library › library/browsercontext-fetch-algorithms.spec.ts › algorithms › gzip decompression › should not fail with an empty response with content-length header (Z_BUF_ERROR) [unknown] +bidi-chromium-library › library/browsercontext-fetch-algorithms.spec.ts › algorithms › deflate decompression › should support decompression [unknown] +bidi-chromium-library › library/browsercontext-fetch-algorithms.spec.ts › algorithms › deflate decompression › should not fail if response content-length header is missing (deflate) [unknown] +bidi-chromium-library › library/browsercontext-fetch-algorithms.spec.ts › algorithms › deflate decompression › should not fail with chunked responses (without Content-Length header) [unknown] +bidi-chromium-library › library/browsercontext-fetch-algorithms.spec.ts › algorithms › deflate decompression › should not fail with an empty response without content-length header (Z_BUF_ERROR) [unknown] +bidi-chromium-library › library/browsercontext-fetch-algorithms.spec.ts › algorithms › deflate decompression › should not fail with an empty response with content-length header (Z_BUF_ERROR) [unknown] +bidi-chromium-library › library/browsercontext-fetch-algorithms.spec.ts › algorithms › br decompression › should support decompression [unknown] +bidi-chromium-library › library/browsercontext-fetch-algorithms.spec.ts › algorithms › br decompression › should not fail if response content-length header is missing (br) [unknown] +bidi-chromium-library › library/browsercontext-fetch-algorithms.spec.ts › algorithms › br decompression › should not fail with chunked responses (without Content-Length header) [unknown] +bidi-chromium-library › library/browsercontext-fetch-algorithms.spec.ts › algorithms › br decompression › should not fail with an empty response without content-length header (Z_BUF_ERROR) [unknown] +bidi-chromium-library › library/browsercontext-fetch-algorithms.spec.ts › algorithms › br decompression › should not fail with an empty response with content-length header (Z_BUF_ERROR) [unknown] +bidi-chromium-library › library/browsercontext-fetch-happy-eyeballs.spec.ts › get should work [unknown] +bidi-chromium-library › library/browsercontext-fetch-happy-eyeballs.spec.ts › get should work on request fixture [unknown] +bidi-chromium-library › library/browsercontext-fetch-happy-eyeballs.spec.ts › https post should work with ignoreHTTPSErrors option [unknown] +bidi-chromium-library › library/browsercontext-fetch-happy-eyeballs.spec.ts › should work with ip6 and port as the host [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › get should work @smoke [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › fetch should work [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should throw on network error [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should throw on network error after redirect [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should throw on network error when sending body [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should throw on network error when sending body after redirect [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should add session cookies to request [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › fetch should support params passed as object [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › fetch should support params passed as URLSearchParams [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › fetch should support params passed as string [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › fetch should support failOnStatusCode [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › fetchshould support ignoreHTTPSErrors option [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › delete should support params passed as object [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › delete should support params passed as URLSearchParams [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › delete should support params passed as string [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › delete should support failOnStatusCode [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › deleteshould support ignoreHTTPSErrors option [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › get should support params passed as object [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › get should support params passed as URLSearchParams [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › get should support params passed as string [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › get should support failOnStatusCode [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › getshould support ignoreHTTPSErrors option [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › head should support params passed as object [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › head should support params passed as URLSearchParams [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › head should support params passed as string [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › head should support failOnStatusCode [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › headshould support ignoreHTTPSErrors option [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › patch should support params passed as object [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › patch should support params passed as URLSearchParams [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › patch should support params passed as string [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › patch should support failOnStatusCode [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › patchshould support ignoreHTTPSErrors option [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › post should support params passed as object [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › post should support params passed as URLSearchParams [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › post should support params passed as string [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › post should support failOnStatusCode [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › postshould support ignoreHTTPSErrors option [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › put should support params passed as object [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › put should support params passed as URLSearchParams [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › put should support params passed as string [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › put should support failOnStatusCode [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › putshould support ignoreHTTPSErrors option [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should not add context cookie if cookie header passed as a parameter [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should follow redirects [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should follow redirects correctly when Location header contains UTF-8 characters [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should add cookies from Set-Cookie header [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should preserve cookie order from Set-Cookie header [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should support cookie with empty value [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should not lose body while handling Set-Cookie header [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should remove cookie with negative max-age [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should remove cookie with expires far in the past [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should handle cookies on redirects [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should return raw headers [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should work with http credentials [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should work with setHTTPCredentials [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should return error with wrong credentials [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should support HTTPCredentials.send for newContext [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should support HTTPCredentials.send for browser.newPage [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › delete should support post data [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › get should support post data [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › head should support post data [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › patch should support post data [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › post should support post data [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › put should support post data [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should add default headers [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should send content-length [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should add default headers to redirects [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should allow to override default headers [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should propagate custom headers with redirects [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should propagate extra http headers with redirects [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should throw on invalid header value [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should throw on non-http(s) protocol [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should support https [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should inherit ignoreHTTPSErrors from context [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should resolve url relative to baseURL [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should support gzip compression [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should throw informative error on corrupted gzip body [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should support brotli compression [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should throw informative error on corrupted brotli body [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should support deflate compression [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should throw informative error on corrupted deflate body [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should support timeout option [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should support a timeout of 0 [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should respect timeout after redirects [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should not hang on a brotli encoded Range request [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should dispose [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should dispose when context closes [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should override request parameters [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should support application/x-www-form-urlencoded [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should encode to application/json by default [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should support multipart/form-data [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should support multipart/form-data with ReadStream values [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should support multipart/form-data and keep the order [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should support repeating names in multipart/form-data [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should serialize data to json regardless of content-type [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should throw nice error on unsupported data type [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › context request should export same storage state as context [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should send secure cookie over http for localhost [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should accept bool and numeric params [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should abort requests when browser context closes [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should work with connectOverCDP [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should support SameSite cookie attribute over https [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should set domain=localhost cookie [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › fetch should not throw on long set-cookie value [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should support set-cookie with SameSite and without Secure attribute over HTTP [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should update host header on redirect [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should not work after dispose [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should not work after context dispose [unknown] +bidi-chromium-library › library/browsercontext-fetch.spec.ts › should retry on ECONNRESET [unknown] +bidi-chromium-library › library/browsercontext-har.spec.ts › should context.routeFromHAR, matching the method and following redirects [unknown] +bidi-chromium-library › library/browsercontext-har.spec.ts › should page.routeFromHAR, matching the method and following redirects [unknown] +bidi-chromium-library › library/browsercontext-har.spec.ts › fallback:continue should continue when not found in har [unknown] +bidi-chromium-library › library/browsercontext-har.spec.ts › by default should abort requests not found in har [unknown] +bidi-chromium-library › library/browsercontext-har.spec.ts › fallback:continue should continue requests on bad har [unknown] +bidi-chromium-library › library/browsercontext-har.spec.ts › should only handle requests matching url filter [unknown] +bidi-chromium-library › library/browsercontext-har.spec.ts › should only context.routeFromHAR requests matching url filter [unknown] +bidi-chromium-library › library/browsercontext-har.spec.ts › should only page.routeFromHAR requests matching url filter [unknown] +bidi-chromium-library › library/browsercontext-har.spec.ts › should apply overrides before routing from har [unknown] +bidi-chromium-library › library/browsercontext-har.spec.ts › should support regex filter [unknown] +bidi-chromium-library › library/browsercontext-har.spec.ts › newPage should fulfill from har, matching the method and following redirects [unknown] +bidi-chromium-library › library/browsercontext-har.spec.ts › should change document URL after redirected navigation [unknown] +bidi-chromium-library › library/browsercontext-har.spec.ts › should change document URL after redirected navigation on click [unknown] +bidi-chromium-library › library/browsercontext-har.spec.ts › should goBack to redirected navigation [unknown] +bidi-chromium-library › library/browsercontext-har.spec.ts › should goForward to redirected navigation [unknown] +bidi-chromium-library › library/browsercontext-har.spec.ts › should reload redirected navigation [unknown] +bidi-chromium-library › library/browsercontext-har.spec.ts › should fulfill from har with content in a file [unknown] +bidi-chromium-library › library/browsercontext-har.spec.ts › should round-trip har.zip [unknown] +bidi-chromium-library › library/browsercontext-har.spec.ts › should produce extracted zip [unknown] +bidi-chromium-library › library/browsercontext-har.spec.ts › should round-trip extracted har.zip [unknown] +bidi-chromium-library › library/browsercontext-har.spec.ts › should round-trip har with postData [unknown] +bidi-chromium-library › library/browsercontext-har.spec.ts › should record overridden requests to har [unknown] +bidi-chromium-library › library/browsercontext-har.spec.ts › should disambiguate by header [unknown] +bidi-chromium-library › library/browsercontext-har.spec.ts › should update har.zip for context [unknown] +bidi-chromium-library › library/browsercontext-har.spec.ts › should ignore boundary when matching multipart/form-data body [unknown] +bidi-chromium-library › library/browsercontext-har.spec.ts › should update har.zip for page [unknown] +bidi-chromium-library › library/browsercontext-har.spec.ts › should update har.zip for page with different options [unknown] +bidi-chromium-library › library/browsercontext-har.spec.ts › should update extracted har.zip for page [unknown] +bidi-chromium-library › library/browsercontext-har.spec.ts › page.unrouteAll should stop page.routeFromHAR [unknown] +bidi-chromium-library › library/browsercontext-har.spec.ts › context.unrouteAll should stop context.routeFromHAR [unknown] +bidi-chromium-library › library/browsercontext-har.spec.ts › should ignore aborted requests [unknown] +bidi-chromium-library › library/browsercontext-locale.spec.ts › should affect accept-language header @smoke [unknown] +bidi-chromium-library › library/browsercontext-locale.spec.ts › should affect navigator.language [unknown] +bidi-chromium-library › library/browsercontext-locale.spec.ts › should format number [unknown] +bidi-chromium-library › library/browsercontext-locale.spec.ts › should format date [unknown] +bidi-chromium-library › library/browsercontext-locale.spec.ts › should format number in popups [unknown] +bidi-chromium-library › library/browsercontext-locale.spec.ts › should affect navigator.language in popups [unknown] +bidi-chromium-library › library/browsercontext-locale.spec.ts › should work for multiple pages sharing same process [unknown] +bidi-chromium-library › library/browsercontext-locale.spec.ts › should be isolated between contexts [unknown] +bidi-chromium-library › library/browsercontext-locale.spec.ts › should not change default locale in another context [unknown] +bidi-chromium-library › library/browsercontext-locale.spec.ts › should format number in workers [unknown] +bidi-chromium-library › library/browsercontext-locale.spec.ts › should affect Intl.DateTimeFormat().resolvedOptions().locale [unknown] +bidi-chromium-library › library/browsercontext-network-event.spec.ts › BrowserContext.Events.Request [unknown] +bidi-chromium-library › library/browsercontext-network-event.spec.ts › BrowserContext.Events.Response [unknown] +bidi-chromium-library › library/browsercontext-network-event.spec.ts › BrowserContext.Events.RequestFailed [unknown] +bidi-chromium-library › library/browsercontext-network-event.spec.ts › BrowserContext.Events.RequestFinished [unknown] +bidi-chromium-library › library/browsercontext-network-event.spec.ts › should fire events in proper order [unknown] +bidi-chromium-library › library/browsercontext-network-event.spec.ts › should not fire events for favicon or favicon redirects [unknown] +bidi-chromium-library › library/browsercontext-page-event.spec.ts › should have url [unknown] +bidi-chromium-library › library/browsercontext-page-event.spec.ts › should have url after domcontentloaded [unknown] +bidi-chromium-library › library/browsercontext-page-event.spec.ts › should have about:blank url with domcontentloaded [unknown] +bidi-chromium-library › library/browsercontext-page-event.spec.ts › should have about:blank for empty url with domcontentloaded [unknown] +bidi-chromium-library › library/browsercontext-page-event.spec.ts › should report when a new page is created and closed [unknown] +bidi-chromium-library › library/browsercontext-page-event.spec.ts › should report initialized pages [unknown] +bidi-chromium-library › library/browsercontext-page-event.spec.ts › should not crash while redirecting of original request was missed [unknown] +bidi-chromium-library › library/browsercontext-page-event.spec.ts › should have an opener [unknown] +bidi-chromium-library › library/browsercontext-page-event.spec.ts › should fire page lifecycle events [unknown] +bidi-chromium-library › library/browsercontext-page-event.spec.ts › should work with Shift-clicking [unknown] +bidi-chromium-library › library/browsercontext-page-event.spec.ts › should work with Ctrl-clicking [unknown] +bidi-chromium-library › library/browsercontext-page-event.spec.ts › should not hang on ctrl-click during provisional load [unknown] +bidi-chromium-library › library/browsercontext-pages.spec.ts › should not be visible in context.pages [unknown] +bidi-chromium-library › library/browsercontext-pages.spec.ts › page.context should return the correct instance [unknown] +bidi-chromium-library › library/browsercontext-pages.spec.ts › frame.focus should work multiple times [unknown] +bidi-chromium-library › library/browsercontext-pages.spec.ts › should click with disabled javascript [unknown] +bidi-chromium-library › library/browsercontext-pages.spec.ts › should not hang with touch-enabled viewports [unknown] +bidi-chromium-library › library/browsercontext-pages.spec.ts › should click the button with deviceScaleFactor set [unknown] +bidi-chromium-library › library/browsercontext-pages.spec.ts › should click the button with offset with page scale [unknown] +bidi-chromium-library › library/browsercontext-pages.spec.ts › should return bounding box with page scale [unknown] +bidi-chromium-library › library/browsercontext-pages.spec.ts › should not leak listeners during navigation of 20 pages [unknown] +bidi-chromium-library › library/browsercontext-pages.spec.ts › should keep selection in multiple pages [unknown] +bidi-chromium-library › library/browsercontext-proxy.spec.ts › should work when passing the proxy only on the context level [unknown] +bidi-chromium-library › library/browsercontext-proxy.spec.ts › should throw for bad server value [unknown] +bidi-chromium-library › library/browsercontext-proxy.spec.ts › should use proxy [unknown] +bidi-chromium-library › library/browsercontext-proxy.spec.ts › should set cookie for top-level domain [unknown] +bidi-chromium-library › library/browsercontext-proxy.spec.ts › should proxy local network requests › by default › localhost [unknown] +bidi-chromium-library › library/browsercontext-proxy.spec.ts › should proxy local network requests › by default › loopback address [unknown] +bidi-chromium-library › library/browsercontext-proxy.spec.ts › should proxy local network requests › by default › link-local [unknown] +bidi-chromium-library › library/browsercontext-proxy.spec.ts › should proxy local network requests › with other bypasses › localhost [unknown] +bidi-chromium-library › library/browsercontext-proxy.spec.ts › should proxy local network requests › with other bypasses › loopback address [unknown] +bidi-chromium-library › library/browsercontext-proxy.spec.ts › should proxy local network requests › with other bypasses › link-local [unknown] +bidi-chromium-library › library/browsercontext-proxy.spec.ts › should use ipv6 proxy [unknown] +bidi-chromium-library › library/browsercontext-proxy.spec.ts › should use proxy twice [unknown] +bidi-chromium-library › library/browsercontext-proxy.spec.ts › should use proxy for second page [unknown] +bidi-chromium-library › library/browsercontext-proxy.spec.ts › should use proxy for https urls [unknown] +bidi-chromium-library › library/browsercontext-proxy.spec.ts › should work with IP:PORT notion [unknown] +bidi-chromium-library › library/browsercontext-proxy.spec.ts › should throw for socks5 authentication [unknown] +bidi-chromium-library › library/browsercontext-proxy.spec.ts › should throw for socks4 authentication [unknown] +bidi-chromium-library › library/browsercontext-proxy.spec.ts › should authenticate [unknown] +bidi-chromium-library › library/browsercontext-proxy.spec.ts › should authenticate with empty password [unknown] +bidi-chromium-library › library/browsercontext-proxy.spec.ts › should isolate proxy credentials between contexts [unknown] +bidi-chromium-library › library/browsercontext-proxy.spec.ts › should exclude patterns [unknown] +bidi-chromium-library › library/browsercontext-proxy.spec.ts › should use socks proxy [unknown] +bidi-chromium-library › library/browsercontext-proxy.spec.ts › should use socks proxy in second page [unknown] +bidi-chromium-library › library/browsercontext-proxy.spec.ts › does launch without a port [unknown] +bidi-chromium-library › library/browsercontext-proxy.spec.ts › should isolate proxy credentials between contexts on navigation [unknown] +bidi-chromium-library › library/browsercontext-reuse.spec.ts › should re-add binding after reset [unknown] +bidi-chromium-library › library/browsercontext-reuse.spec.ts › should reset serviceworker [unknown] +bidi-chromium-library › library/browsercontext-reuse.spec.ts › should reset serviceworker that hangs in importScripts [unknown] +bidi-chromium-library › library/browsercontext-reuse.spec.ts › should not cache resources [unknown] +bidi-chromium-library › library/browsercontext-reuse.spec.ts › should ignore binding from beforeunload [unknown] +bidi-chromium-library › library/browsercontext-reuse.spec.ts › should reset mouse position [unknown] +bidi-chromium-library › library/browsercontext-reuse.spec.ts › should reset tracing [unknown] +bidi-chromium-library › library/browsercontext-reuse.spec.ts › should work with clock emulation [unknown] +bidi-chromium-library › library/browsercontext-reuse.spec.ts › should continue issuing events after closing the reused page [unknown] +bidi-chromium-library › library/browsercontext-route.spec.ts › should intercept [unknown] +bidi-chromium-library › library/browsercontext-route.spec.ts › should unroute [unknown] +bidi-chromium-library › library/browsercontext-route.spec.ts › should yield to page.route [unknown] +bidi-chromium-library › library/browsercontext-route.spec.ts › should fall back to context.route [unknown] +bidi-chromium-library › library/browsercontext-route.spec.ts › should support Set-Cookie header [unknown] +bidi-chromium-library › library/browsercontext-route.spec.ts › should ignore secure Set-Cookie header for insecure requests [unknown] +bidi-chromium-library › library/browsercontext-route.spec.ts › should use Set-Cookie header in future requests [unknown] +bidi-chromium-library › library/browsercontext-route.spec.ts › should work with ignoreHTTPSErrors [unknown] +bidi-chromium-library › library/browsercontext-route.spec.ts › should support the times parameter with route matching [unknown] +bidi-chromium-library › library/browsercontext-route.spec.ts › should work if handler with times parameter was removed from another handler [unknown] +bidi-chromium-library › library/browsercontext-route.spec.ts › should support async handler w/ times [unknown] +bidi-chromium-library › library/browsercontext-route.spec.ts › should overwrite post body with empty string [unknown] +bidi-chromium-library › library/browsercontext-route.spec.ts › should chain fallback [unknown] +bidi-chromium-library › library/browsercontext-route.spec.ts › should chain fallback w/ dynamic URL [unknown] +bidi-chromium-library › library/browsercontext-route.spec.ts › should not chain fulfill [unknown] +bidi-chromium-library › library/browsercontext-route.spec.ts › should not chain abort [unknown] +bidi-chromium-library › library/browsercontext-route.spec.ts › should chain fallback into page [unknown] +bidi-chromium-library › library/browsercontext-route.spec.ts › should fall back async [unknown] +bidi-chromium-library › library/browsercontext-service-worker-policy.spec.ts › should allow service workers by default [unknown] +bidi-chromium-library › library/browsercontext-service-worker-policy.spec.ts › block › blocks service worker registration [unknown] +bidi-chromium-library › library/browsercontext-service-worker-policy.spec.ts › block › should not throw error on about:blank [unknown] +bidi-chromium-library › library/browsercontext-set-extra-http-headers.spec.ts › should override extra headers from browser context [unknown] +bidi-chromium-library › library/browsercontext-set-extra-http-headers.spec.ts › should throw for non-string header values [unknown] +bidi-chromium-library › library/browsercontext-storage-state.spec.ts › should capture local storage [unknown] +bidi-chromium-library › library/browsercontext-storage-state.spec.ts › should set local storage [unknown] +bidi-chromium-library › library/browsercontext-storage-state.spec.ts › should round-trip through the file [unknown] +bidi-chromium-library › library/browsercontext-storage-state.spec.ts › should capture cookies [unknown] +bidi-chromium-library › library/browsercontext-storage-state.spec.ts › should not emit events about internal page [unknown] +bidi-chromium-library › library/browsercontext-storage-state.spec.ts › should not restore localStorage twice [unknown] +bidi-chromium-library › library/browsercontext-storage-state.spec.ts › should handle missing file [unknown] +bidi-chromium-library › library/browsercontext-storage-state.spec.ts › should handle malformed file [unknown] +bidi-chromium-library › library/browsercontext-storage-state.spec.ts › should serialize storageState with lone surrogates [unknown] +bidi-chromium-library › library/browsercontext-storage-state.spec.ts › should work when service worker is intefering [unknown] +bidi-chromium-library › library/browsercontext-strict.spec.ts › should not fail page.textContent in non-strict mode [unknown] +bidi-chromium-library › library/browsercontext-strict.spec.ts › strict context mode › should fail page.textContent in strict mode [unknown] +bidi-chromium-library › library/browsercontext-strict.spec.ts › strict context mode › should fail page.click in strict mode [unknown] +bidi-chromium-library › library/browsercontext-strict.spec.ts › strict context mode › should opt out of strict mode [unknown] +bidi-chromium-library › library/browsercontext-timezone-id.spec.ts › should work @smoke [unknown] +bidi-chromium-library › library/browsercontext-timezone-id.spec.ts › should throw for invalid timezone IDs when creating pages [unknown] +bidi-chromium-library › library/browsercontext-timezone-id.spec.ts › should work for multiple pages sharing same process [unknown] +bidi-chromium-library › library/browsercontext-timezone-id.spec.ts › should not change default timezone in another context [unknown] +bidi-chromium-library › library/browsercontext-timezone-id.spec.ts › should affect Intl.DateTimeFormat().resolvedOptions().timeZone [unknown] +bidi-chromium-library › library/browsercontext-user-agent.spec.ts › should work [unknown] +bidi-chromium-library › library/browsercontext-user-agent.spec.ts › should work for subframes [unknown] +bidi-chromium-library › library/browsercontext-user-agent.spec.ts › should emulate device user-agent [unknown] +bidi-chromium-library › library/browsercontext-user-agent.spec.ts › should make a copy of default options [unknown] +bidi-chromium-library › library/browsercontext-user-agent.spec.ts › custom user agent for download [unknown] +bidi-chromium-library › library/browsercontext-user-agent.spec.ts › should work for navigator.userAgentData and sec-ch-ua headers [unknown] +bidi-chromium-library › library/browsercontext-viewport-mobile.spec.ts › mobile viewport › should support mobile emulation [unknown] +bidi-chromium-library › library/browsercontext-viewport-mobile.spec.ts › mobile viewport › should support touch emulation [unknown] +bidi-chromium-library › library/browsercontext-viewport-mobile.spec.ts › mobile viewport › should be detectable [unknown] +bidi-chromium-library › library/browsercontext-viewport-mobile.spec.ts › mobile viewport › should detect touch when applying viewport with touches [unknown] +bidi-chromium-library › library/browsercontext-viewport-mobile.spec.ts › mobile viewport › should support landscape emulation [unknown] +bidi-chromium-library › library/browsercontext-viewport-mobile.spec.ts › mobile viewport › should support window.orientation emulation [unknown] +bidi-chromium-library › library/browsercontext-viewport-mobile.spec.ts › mobile viewport › should fire orientationchange event [unknown] +bidi-chromium-library › library/browsercontext-viewport-mobile.spec.ts › mobile viewport › default mobile viewports to 980 width [unknown] +bidi-chromium-library › library/browsercontext-viewport-mobile.spec.ts › mobile viewport › respect meta viewport tag [unknown] +bidi-chromium-library › library/browsercontext-viewport-mobile.spec.ts › mobile viewport › should emulate the hover media feature [unknown] +bidi-chromium-library › library/browsercontext-viewport-mobile.spec.ts › mobile viewport › mouse should work with mobile viewports and cross process navigations [unknown] +bidi-chromium-library › library/browsercontext-viewport-mobile.spec.ts › mobile viewport › should scroll when emulating a mobile viewport [unknown] +bidi-chromium-library › library/browsercontext-viewport-mobile.spec.ts › mobile viewport › view scale should reset after navigation [unknown] +bidi-chromium-library › library/browsercontext-viewport.spec.ts › should get the proper default viewport size [unknown] +bidi-chromium-library › library/browsercontext-viewport.spec.ts › should set the proper viewport size [unknown] +bidi-chromium-library › library/browsercontext-viewport.spec.ts › should return correct outerWidth and outerHeight [unknown] +bidi-chromium-library › library/browsercontext-viewport.spec.ts › should emulate device width [unknown] +bidi-chromium-library › library/browsercontext-viewport.spec.ts › should emulate device height [unknown] +bidi-chromium-library › library/browsercontext-viewport.spec.ts › should emulate availWidth and availHeight [unknown] +bidi-chromium-library › library/browsercontext-viewport.spec.ts › should not have touch by default [unknown] +bidi-chromium-library › library/browsercontext-viewport.spec.ts › should throw on tap if hasTouch is not enabled [unknown] +bidi-chromium-library › library/browsercontext-viewport.spec.ts › should support touch with null viewport [unknown] +bidi-chromium-library › library/browsercontext-viewport.spec.ts › should set both screen and viewport options [unknown] +bidi-chromium-library › library/browsercontext-viewport.spec.ts › should report null viewportSize when given null viewport [unknown] +bidi-chromium-library › library/browsercontext-viewport.spec.ts › should drag with high dpi [unknown] +bidi-chromium-library › library/browsercontext-viewport.spec.ts › WebKit Windows headed should have a minimal viewport [unknown] +bidi-chromium-library › library/browsercontext-viewport.spec.ts › should be able to get correct orientation angle on non-mobile devices [unknown] +bidi-chromium-library › library/browsercontext-viewport.spec.ts › should set window.screen.orientation.type for mobile devices [unknown] +bidi-chromium-library › library/browsertype-basic.spec.ts › browserType.executablePath should work [unknown] +bidi-chromium-library › library/browsertype-basic.spec.ts › browserType.name should work [unknown] +bidi-chromium-library › library/browsertype-basic.spec.ts › should throw when trying to connect with not-chromium [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should connect over wss [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should print HTTP error [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should print ws error [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should print custom ws close error [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should be able to reconnect to a browser [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should be able to visit ipv6 [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should ignore page.pause when headed [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should be able to visit ipv6 through localhost [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should be able to connect two browsers at the same time [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should timeout in socket while connecting [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should timeout in connect while connecting [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should send extra headers with connect request [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should send default User-Agent and X-Playwright-Browser headers with connect request [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should support slowmo option [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › disconnected event should be emitted when browser is closed or server is closed [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › disconnected event should have browser as argument [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should handle exceptions during connect [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should set the browser connected state [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should throw when used after isConnected returns false [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should throw when calling waitForNavigation after disconnect [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should reject navigation when browser closes [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should reject waitForSelector when browser closes [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should emit close events on pages and contexts [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should terminate network waiters [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should reject waitForEvent before browser.close finishes [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should reject waitForEvent before browser.onDisconnect fires [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should respect selectors [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should not throw on close after disconnect [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should saveAs videos from remote browser [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should be able to connect 20 times to a single server without warnings [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should save download [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should error when saving download after deletion [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should properly disconnect when connection closes from the client side [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should be able to connect when the wsEndpoint is passed as an option [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should save har [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should filter launch options [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should record trace with sources [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should fulfill with global fetch result [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should upload large file [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › setInputFiles should preserve lastModified timestamp [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › should connect over http [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › socks proxy › should forward non-forwarded requests [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › socks proxy › should proxy localhost requests @smoke [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › socks proxy › should proxy ipv6 localhost requests @smoke [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › socks proxy › should proxy localhost requests from fetch api [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › socks proxy › should proxy local.playwright requests [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › socks proxy › should lead to the error page for forwarded requests when the connection is refused [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › socks proxy › should proxy based on the pattern [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer › socks proxy › should check proxy pattern on the client [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should connect over wss [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should print HTTP error [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should print ws error [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should print custom ws close error [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should be able to reconnect to a browser [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should be able to visit ipv6 [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should ignore page.pause when headed [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should be able to visit ipv6 through localhost [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should be able to connect two browsers at the same time [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should timeout in socket while connecting [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should timeout in connect while connecting [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should send extra headers with connect request [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should send default User-Agent and X-Playwright-Browser headers with connect request [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should support slowmo option [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › disconnected event should be emitted when browser is closed or server is closed [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › disconnected event should have browser as argument [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should handle exceptions during connect [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should set the browser connected state [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should throw when used after isConnected returns false [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should throw when calling waitForNavigation after disconnect [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should reject navigation when browser closes [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should reject waitForSelector when browser closes [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should emit close events on pages and contexts [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should terminate network waiters [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should reject waitForEvent before browser.close finishes [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should reject waitForEvent before browser.onDisconnect fires [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should respect selectors [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should not throw on close after disconnect [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should saveAs videos from remote browser [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should be able to connect 20 times to a single server without warnings [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should save download [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should error when saving download after deletion [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should properly disconnect when connection closes from the client side [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should be able to connect when the wsEndpoint is passed as an option [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should save har [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should filter launch options [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should record trace with sources [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should fulfill with global fetch result [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should upload large file [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › setInputFiles should preserve lastModified timestamp [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › should connect over http [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › socks proxy › should forward non-forwarded requests [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › socks proxy › should proxy localhost requests @smoke [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › socks proxy › should proxy ipv6 localhost requests @smoke [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › socks proxy › should proxy localhost requests from fetch api [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › socks proxy › should proxy local.playwright requests [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › socks proxy › should lead to the error page for forwarded requests when the connection is refused [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › socks proxy › should proxy based on the pattern [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › run-server › socks proxy › should check proxy pattern on the client [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer only › should work with cluster [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer only › should properly disconnect when connection closes from the server side [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › launchServer only › should be able to reconnect to a browser 12 times without warnings [unknown] +bidi-chromium-library › library/browsertype-connect.spec.ts › should refuse connecting when versions do not match [unknown] +bidi-chromium-library › library/browsertype-launch-selenium.spec.ts › selenium grid 3.141.59 standalone chromium [unknown] +bidi-chromium-library › library/browsertype-launch-selenium.spec.ts › selenium grid 3.141.59 hub + node chromium [unknown] +bidi-chromium-library › library/browsertype-launch-selenium.spec.ts › selenium grid 4.8.3 standalone chromium [unknown] +bidi-chromium-library › library/browsertype-launch-selenium.spec.ts › selenium grid 4.8.3 hub + node chromium [unknown] +bidi-chromium-library › library/browsertype-launch-selenium.spec.ts › selenium grid 4.8.3 standalone chromium broken driver [unknown] +bidi-chromium-library › library/browsertype-launch-selenium.spec.ts › selenium grid 3.141.59 standalone non-chromium [unknown] +bidi-chromium-library › library/browsertype-launch-selenium.spec.ts › selenium grid 3.141.59 standalone chromium through run-driver [unknown] +bidi-chromium-library › library/browsertype-launch-server.spec.ts › launch server › should work [unknown] +bidi-chromium-library › library/browsertype-launch-server.spec.ts › launch server › should work with host [unknown] +bidi-chromium-library › library/browsertype-launch-server.spec.ts › launch server › should work with port [unknown] +bidi-chromium-library › library/browsertype-launch-server.spec.ts › launch server › should work with wsPath [unknown] +bidi-chromium-library › library/browsertype-launch-server.spec.ts › launch server › should work when wsPath is missing leading slash [unknown] +bidi-chromium-library › library/browsertype-launch-server.spec.ts › launch server › should default to random wsPath [unknown] +bidi-chromium-library › library/browsertype-launch-server.spec.ts › launch server › should provide an error when ws endpoint is incorrect [unknown] +bidi-chromium-library › library/browsertype-launch-server.spec.ts › launch server › should fire "close" event during kill [unknown] +bidi-chromium-library › library/browsertype-launch-server.spec.ts › launch server › should return child_process instance [unknown] +bidi-chromium-library › library/browsertype-launch-server.spec.ts › launch server › should fire close event [unknown] +bidi-chromium-library › library/browsertype-launch-server.spec.ts › launch server › should log protocol [unknown] +bidi-chromium-library › library/browsertype-launch.spec.ts › should reject all promises when browser is closed [unknown] +bidi-chromium-library › library/browsertype-launch.spec.ts › should throw if userDataDir option is passed [unknown] +bidi-chromium-library › library/browsertype-launch.spec.ts › should throw if userDataDir is passed as an argument [unknown] +bidi-chromium-library › library/browsertype-launch.spec.ts › should throw if port option is passed [unknown] +bidi-chromium-library › library/browsertype-launch.spec.ts › should throw if port option is passed for persistent context [unknown] +bidi-chromium-library › library/browsertype-launch.spec.ts › should throw if page argument is passed [unknown] +bidi-chromium-library › library/browsertype-launch.spec.ts › should reject if launched browser fails immediately [unknown] +bidi-chromium-library › library/browsertype-launch.spec.ts › should reject if executable path is invalid [unknown] +bidi-chromium-library › library/browsertype-launch.spec.ts › should handle timeout [unknown] +bidi-chromium-library › library/browsertype-launch.spec.ts › should handle exception [unknown] +bidi-chromium-library › library/browsertype-launch.spec.ts › should report launch log [unknown] +bidi-chromium-library › library/browsertype-launch.spec.ts › should accept objects as options [unknown] +bidi-chromium-library › library/browsertype-launch.spec.ts › should fire close event for all contexts [unknown] +bidi-chromium-library › library/browsertype-launch.spec.ts › should be callable twice [unknown] +bidi-chromium-library › library/browsertype-launch.spec.ts › should allow await using [unknown] +bidi-chromium-library › library/capabilities.spec.ts › SharedArrayBuffer should work @smoke [unknown] +bidi-chromium-library › library/capabilities.spec.ts › Web Assembly should work @smoke [unknown] +bidi-chromium-library › library/capabilities.spec.ts › WebSocket should work @smoke [unknown] +bidi-chromium-library › library/capabilities.spec.ts › should respect CSP @smoke [unknown] +bidi-chromium-library › library/capabilities.spec.ts › should play video @smoke [unknown] +bidi-chromium-library › library/capabilities.spec.ts › should play webm video @smoke [unknown] +bidi-chromium-library › library/capabilities.spec.ts › should play audio @smoke [unknown] +bidi-chromium-library › library/capabilities.spec.ts › should support webgl @smoke [unknown] +bidi-chromium-library › library/capabilities.spec.ts › should support webgl 2 @smoke [unknown] +bidi-chromium-library › library/capabilities.spec.ts › should not crash on page with mp4 @smoke [unknown] +bidi-chromium-library › library/capabilities.spec.ts › should not crash on showDirectoryPicker [unknown] +bidi-chromium-library › library/capabilities.spec.ts › should not crash on storage.getDirectory() [unknown] +bidi-chromium-library › library/capabilities.spec.ts › navigator.clipboard should be present [unknown] +bidi-chromium-library › library/capabilities.spec.ts › should set CloseEvent.wasClean to false when the server terminates a WebSocket connection [unknown] +bidi-chromium-library › library/capabilities.spec.ts › serviceWorker should intercept document request [unknown] +bidi-chromium-library › library/capabilities.spec.ts › webkit should define window.safari [unknown] +bidi-chromium-library › library/capabilities.spec.ts › make sure that XMLHttpRequest upload events are emitted correctly [unknown] +bidi-chromium-library › library/capabilities.spec.ts › loading in HTMLImageElement.prototype [unknown] +bidi-chromium-library › library/capabilities.spec.ts › window.GestureEvent in WebKit [unknown] +bidi-chromium-library › library/capabilities.spec.ts › requestFullscreen [unknown] +bidi-chromium-library › library/capabilities.spec.ts › should send no Content-Length header for GET requests with a Content-Type [unknown] +bidi-chromium-library › library/capabilities.spec.ts › Intl.ListFormat should work [unknown] +bidi-chromium-library › library/capabilities.spec.ts › service worker should cover the iframe [unknown] +bidi-chromium-library › library/capabilities.spec.ts › service worker should register in an iframe [unknown] +bidi-chromium-library › library/channels.spec.ts › should scope context handles [unknown] +bidi-chromium-library › library/channels.spec.ts › should scope CDPSession handles [unknown] +bidi-chromium-library › library/channels.spec.ts › should scope browser handles [unknown] +bidi-chromium-library › library/channels.spec.ts › should not generate dispatchers for subresources w/o listeners [unknown] +bidi-chromium-library › library/channels.spec.ts › should work with the domain module [unknown] +bidi-chromium-library › library/channels.spec.ts › exposeFunction should not leak [unknown] +bidi-chromium-library › library/chromium/bfcache.spec.ts › bindings should work after restoring from bfcache [unknown] +bidi-chromium-library › library/chromium/chromium.spec.ts › should create a worker from a service worker [unknown] +bidi-chromium-library › library/chromium/chromium.spec.ts › should create a worker from service worker with noop routing [unknown] +bidi-chromium-library › library/chromium/chromium.spec.ts › should emit new service worker on update [unknown] +bidi-chromium-library › library/chromium/chromium.spec.ts › http credentials › httpCredentials [unknown] +bidi-chromium-library › library/chromium/chromium.spec.ts › serviceWorkers() should return current workers [unknown] +bidi-chromium-library › library/chromium/chromium.spec.ts › should not create a worker from a shared worker [unknown] +bidi-chromium-library › library/chromium/chromium.spec.ts › Page.route should work with intervention headers [unknown] +bidi-chromium-library › library/chromium/chromium.spec.ts › should close service worker together with the context [unknown] +bidi-chromium-library › library/chromium/chromium.spec.ts › should pass args with spaces [unknown] +bidi-chromium-library › library/chromium/chromium.spec.ts › PW_EXPERIMENTAL_SERVICE_WORKER_NETWORK_EVENTS=1 › serviceWorker(), and fromServiceWorker() work [unknown] +bidi-chromium-library › library/chromium/chromium.spec.ts › PW_EXPERIMENTAL_SERVICE_WORKER_NETWORK_EVENTS=1 › should intercept service worker requests (main and within) [unknown] +bidi-chromium-library › library/chromium/chromium.spec.ts › PW_EXPERIMENTAL_SERVICE_WORKER_NETWORK_EVENTS=1 › should report failure (due to content-type) of main service worker request [unknown] +bidi-chromium-library › library/chromium/chromium.spec.ts › PW_EXPERIMENTAL_SERVICE_WORKER_NETWORK_EVENTS=1 › should report failure (due to redirect) of main service worker request [unknown] +bidi-chromium-library › library/chromium/chromium.spec.ts › PW_EXPERIMENTAL_SERVICE_WORKER_NETWORK_EVENTS=1 › should intercept service worker importScripts [unknown] +bidi-chromium-library › library/chromium/chromium.spec.ts › PW_EXPERIMENTAL_SERVICE_WORKER_NETWORK_EVENTS=1 › should report intercepted service worker requests in HAR [unknown] +bidi-chromium-library › library/chromium/chromium.spec.ts › PW_EXPERIMENTAL_SERVICE_WORKER_NETWORK_EVENTS=1 › should intercept only serviceworker request, not page [unknown] +bidi-chromium-library › library/chromium/chromium.spec.ts › PW_EXPERIMENTAL_SERVICE_WORKER_NETWORK_EVENTS=1 › should produce network events, routing, and annotations for Service Worker [unknown] +bidi-chromium-library › library/chromium/chromium.spec.ts › PW_EXPERIMENTAL_SERVICE_WORKER_NETWORK_EVENTS=1 › should produce network events, routing, and annotations for Service Worker (advanced) [unknown] +bidi-chromium-library › library/chromium/chromium.spec.ts › PW_EXPERIMENTAL_SERVICE_WORKER_NETWORK_EVENTS=1 › should intercept service worker update requests [unknown] +bidi-chromium-library › library/chromium/chromium.spec.ts › PW_EXPERIMENTAL_SERVICE_WORKER_NETWORK_EVENTS=1 › setOffline [unknown] +bidi-chromium-library › library/chromium/chromium.spec.ts › PW_EXPERIMENTAL_SERVICE_WORKER_NETWORK_EVENTS=1 › setExtraHTTPHeaders [unknown] +bidi-chromium-library › library/chromium/connect-over-cdp.spec.ts › should connect to an existing cdp session [unknown] +bidi-chromium-library › library/chromium/connect-over-cdp.spec.ts › should use logger in default context [unknown] +bidi-chromium-library › library/chromium/connect-over-cdp.spec.ts › should cleanup artifacts dir after connectOverCDP disconnects due to ws close [unknown] +bidi-chromium-library › library/chromium/connect-over-cdp.spec.ts › should connectOverCDP and manage downloads in default context [unknown] +bidi-chromium-library › library/chromium/connect-over-cdp.spec.ts › should connect to an existing cdp session twice [unknown] +bidi-chromium-library › library/chromium/connect-over-cdp.spec.ts › should connect to existing page with iframe and navigate [unknown] +bidi-chromium-library › library/chromium/connect-over-cdp.spec.ts › should connect to existing service workers [unknown] +bidi-chromium-library › library/chromium/connect-over-cdp.spec.ts › should connect over a ws endpoint [unknown] +bidi-chromium-library › library/chromium/connect-over-cdp.spec.ts › should send extra headers with connect request [unknown] +bidi-chromium-library › library/chromium/connect-over-cdp.spec.ts › should send default User-Agent header with connect request [unknown] +bidi-chromium-library › library/chromium/connect-over-cdp.spec.ts › should report all pages in an existing browser [unknown] +bidi-chromium-library › library/chromium/connect-over-cdp.spec.ts › should connect via https [unknown] +bidi-chromium-library › library/chromium/connect-over-cdp.spec.ts › should return valid browser from context.browser() [unknown] +bidi-chromium-library › library/chromium/connect-over-cdp.spec.ts › should report an expected error when the endpointURL returns a non-expected status code [unknown] +bidi-chromium-library › library/chromium/connect-over-cdp.spec.ts › should report an expected error when the endpoint URL JSON webSocketDebuggerUrl is undefined [unknown] +bidi-chromium-library › library/chromium/connect-over-cdp.spec.ts › should connect to an existing cdp session when passed as a first argument [unknown] +bidi-chromium-library › library/chromium/connect-over-cdp.spec.ts › should use proxy with connectOverCDP [unknown] +bidi-chromium-library › library/chromium/connect-over-cdp.spec.ts › should be able to connect via localhost [unknown] +bidi-chromium-library › library/chromium/connect-over-cdp.spec.ts › emulate media should not be affected by second connectOverCDP [unknown] +bidi-chromium-library › library/chromium/connect-over-cdp.spec.ts › should allow tracing over cdp session [unknown] +bidi-chromium-library › library/chromium/connect-over-cdp.spec.ts › setInputFiles should preserve lastModified timestamp [unknown] +bidi-chromium-library › library/chromium/connect-over-cdp.spec.ts › should print custom ws close error [unknown] +bidi-chromium-library › library/chromium/css-coverage.spec.ts › should work [unknown] +bidi-chromium-library › library/chromium/css-coverage.spec.ts › should report sourceURLs [unknown] +bidi-chromium-library › library/chromium/css-coverage.spec.ts › should report multiple stylesheets [unknown] +bidi-chromium-library › library/chromium/css-coverage.spec.ts › should report stylesheets that have no coverage [unknown] +bidi-chromium-library › library/chromium/css-coverage.spec.ts › should work with media queries [unknown] +bidi-chromium-library › library/chromium/css-coverage.spec.ts › should work with complicated usecases [unknown] +bidi-chromium-library › library/chromium/css-coverage.spec.ts › should ignore injected stylesheets [unknown] +bidi-chromium-library › library/chromium/css-coverage.spec.ts › should report stylesheets across navigations [unknown] +bidi-chromium-library › library/chromium/css-coverage.spec.ts › should NOT report scripts across navigations [unknown] +bidi-chromium-library › library/chromium/css-coverage.spec.ts › should work with a recently loaded stylesheet [unknown] +bidi-chromium-library › library/chromium/disable-web-security.spec.ts › test utility world in popup w/ --disable-web-security [unknown] +bidi-chromium-library › library/chromium/disable-web-security.spec.ts › test init script w/ --disable-web-security [unknown] +bidi-chromium-library › library/chromium/js-coverage.spec.ts › should work [unknown] +bidi-chromium-library › library/chromium/js-coverage.spec.ts › should report sourceURLs [unknown] +bidi-chromium-library › library/chromium/js-coverage.spec.ts › should ignore eval() scripts by default [unknown] +bidi-chromium-library › library/chromium/js-coverage.spec.ts › shouldn't ignore eval() scripts if reportAnonymousScripts is true [unknown] +bidi-chromium-library › library/chromium/js-coverage.spec.ts › should report multiple scripts [unknown] +bidi-chromium-library › library/chromium/js-coverage.spec.ts › should report scripts across navigations when disabled [unknown] +bidi-chromium-library › library/chromium/js-coverage.spec.ts › should NOT report scripts across navigations when enabled [unknown] +bidi-chromium-library › library/chromium/js-coverage.spec.ts › should not hang when there is a debugger statement [unknown] +bidi-chromium-library › library/chromium/launcher.spec.ts › should throw with remote-debugging-pipe argument [unknown] +bidi-chromium-library › library/chromium/launcher.spec.ts › should not throw with remote-debugging-port argument [unknown] +bidi-chromium-library › library/chromium/launcher.spec.ts › should open devtools when "devtools: true" option is given [unknown] +bidi-chromium-library › library/chromium/launcher.spec.ts › should return background pages [unknown] +bidi-chromium-library › library/chromium/launcher.spec.ts › should return background pages when recording video [unknown] +bidi-chromium-library › library/chromium/launcher.spec.ts › should support request/response events when using backgroundPage() [unknown] +bidi-chromium-library › library/chromium/launcher.spec.ts › should not create pages automatically [unknown] +bidi-chromium-library › library/chromium/oopif.spec.ts › should report oopif frames [unknown] +bidi-chromium-library › library/chromium/oopif.spec.ts › should handle oopif detach [unknown] +bidi-chromium-library › library/chromium/oopif.spec.ts › should handle remote -> local -> remote transitions [unknown] +bidi-chromium-library › library/chromium/oopif.spec.ts › should get the proper viewport [unknown] +bidi-chromium-library › library/chromium/oopif.spec.ts › should expose function [unknown] +bidi-chromium-library › library/chromium/oopif.spec.ts › should emulate media [unknown] +bidi-chromium-library › library/chromium/oopif.spec.ts › should emulate offline [unknown] +bidi-chromium-library › library/chromium/oopif.spec.ts › should support context options [unknown] +bidi-chromium-library › library/chromium/oopif.spec.ts › should respect route [unknown] +bidi-chromium-library › library/chromium/oopif.spec.ts › should take screenshot [unknown] +bidi-chromium-library › library/chromium/oopif.spec.ts › should load oopif iframes with subresources and route [unknown] +bidi-chromium-library › library/chromium/oopif.spec.ts › should report main requests [unknown] +bidi-chromium-library › library/chromium/oopif.spec.ts › should support exposeFunction [unknown] +bidi-chromium-library › library/chromium/oopif.spec.ts › should support addInitScript [unknown] +bidi-chromium-library › library/chromium/oopif.spec.ts › should click a button when it overlays oopif [unknown] +bidi-chromium-library › library/chromium/oopif.spec.ts › should report google.com frame with headed [unknown] +bidi-chromium-library › library/chromium/oopif.spec.ts › ElementHandle.boundingBox() should work [unknown] +bidi-chromium-library › library/chromium/oopif.spec.ts › should click [unknown] +bidi-chromium-library › library/chromium/oopif.spec.ts › contentFrame should work [unknown] +bidi-chromium-library › library/chromium/oopif.spec.ts › should allow cdp sessions on oopifs [unknown] +bidi-chromium-library › library/chromium/oopif.spec.ts › should emit filechooser event for iframe [unknown] +bidi-chromium-library › library/chromium/oopif.spec.ts › should be able to click in iframe [unknown] +bidi-chromium-library › library/chromium/oopif.spec.ts › should not throw on exposeFunction when oopif detaches [unknown] +bidi-chromium-library › library/chromium/oopif.spec.ts › should intercept response body from oopif [unknown] +bidi-chromium-library › library/chromium/session.spec.ts › should work [unknown] +bidi-chromium-library › library/chromium/session.spec.ts › should send events [unknown] +bidi-chromium-library › library/chromium/session.spec.ts › should only accept a page or frame [unknown] +bidi-chromium-library › library/chromium/session.spec.ts › should enable and disable domains independently [unknown] +bidi-chromium-library › library/chromium/session.spec.ts › should be able to detach session [unknown] +bidi-chromium-library › library/chromium/session.spec.ts › should throw nice errors [unknown] +bidi-chromium-library › library/chromium/session.spec.ts › should work with main frame [unknown] +bidi-chromium-library › library/chromium/session.spec.ts › should throw if target is part of main [unknown] +bidi-chromium-library › library/chromium/session.spec.ts › should not break page.close() [unknown] +bidi-chromium-library › library/chromium/session.spec.ts › should detach when page closes [unknown] +bidi-chromium-library › library/chromium/session.spec.ts › should reject protocol calls when page closes [unknown] +bidi-chromium-library › library/chromium/session.spec.ts › should work with newBrowserCDPSession [unknown] +bidi-chromium-library › library/chromium/tracing.spec.ts › should output a trace [unknown] +bidi-chromium-library › library/chromium/tracing.spec.ts › should create directories as needed [unknown] +bidi-chromium-library › library/chromium/tracing.spec.ts › should run with custom categories if provided [unknown] +bidi-chromium-library › library/chromium/tracing.spec.ts › should throw if tracing on two pages [unknown] +bidi-chromium-library › library/chromium/tracing.spec.ts › should return a buffer [unknown] +bidi-chromium-library › library/chromium/tracing.spec.ts › should work without options [unknown] +bidi-chromium-library › library/chromium/tracing.spec.ts › should support a buffer without a path [unknown] +bidi-chromium-library › library/client-certificates.spec.ts › fetch › validate input [unknown] +bidi-chromium-library › library/client-certificates.spec.ts › fetch › should fail with no client certificates provided [unknown] +bidi-chromium-library › library/client-certificates.spec.ts › fetch › should keep supporting http [unknown] +bidi-chromium-library › library/client-certificates.spec.ts › fetch › should throw with untrusted client certs [unknown] +bidi-chromium-library › library/client-certificates.spec.ts › fetch › pass with trusted client certificates [unknown] +bidi-chromium-library › library/client-certificates.spec.ts › fetch › pass with trusted client certificates in pfx format [unknown] +bidi-chromium-library › library/client-certificates.spec.ts › fetch › should throw a http error if the pfx passphrase is incorect [unknown] +bidi-chromium-library › library/client-certificates.spec.ts › fetch › should fail with matching certificates in legacy pfx format [unknown] +bidi-chromium-library › library/client-certificates.spec.ts › fetch › should work in the browser with request interception [unknown] +bidi-chromium-library › library/client-certificates.spec.ts › browser › validate input [unknown] +bidi-chromium-library › library/client-certificates.spec.ts › browser › should keep supporting http [unknown] +bidi-chromium-library › library/client-certificates.spec.ts › browser › should fail with no client certificates [unknown] +bidi-chromium-library › library/client-certificates.spec.ts › browser › should fail with self-signed client certificates [unknown] +bidi-chromium-library › library/client-certificates.spec.ts › browser › should pass with matching certificates [unknown] +bidi-chromium-library › library/client-certificates.spec.ts › browser › should pass with matching certificates when passing as content [unknown] +bidi-chromium-library › library/client-certificates.spec.ts › browser › should not hang on tls errors during TLS 1.2 handshake [unknown] +bidi-chromium-library › library/client-certificates.spec.ts › browser › should pass with matching certificates in pfx format [unknown] +bidi-chromium-library › library/client-certificates.spec.ts › browser › should handle TLS renegotiation with client certificates [unknown] +bidi-chromium-library › library/client-certificates.spec.ts › browser › should pass with matching certificates in pfx format when passing as content [unknown] +bidi-chromium-library › library/client-certificates.spec.ts › browser › should fail with matching certificates in legacy pfx format [unknown] +bidi-chromium-library › library/client-certificates.spec.ts › browser › should throw a http error if the pfx passphrase is incorect [unknown] +bidi-chromium-library › library/client-certificates.spec.ts › browser › should pass with matching certificates on context APIRequestContext instance [unknown] +bidi-chromium-library › library/client-certificates.spec.ts › browser › should pass with matching certificates and trailing slash [unknown] +bidi-chromium-library › library/client-certificates.spec.ts › browser › should have ignoreHTTPSErrors=false by default [unknown] +bidi-chromium-library › library/client-certificates.spec.ts › browser › support http2 [unknown] +bidi-chromium-library › library/client-certificates.spec.ts › browser › support http2 if the browser only supports http1.1 [unknown] +bidi-chromium-library › library/client-certificates.spec.ts › browser › should return target connection errors when using http2 [unknown] +bidi-chromium-library › library/client-certificates.spec.ts › browser › should handle rejected certificate in handshake with HTTP/2 [unknown] +bidi-chromium-library › library/client-certificates.spec.ts › browser › persistentContext › validate input [unknown] +bidi-chromium-library › library/client-certificates.spec.ts › browser › persistentContext › should pass with matching certificates [unknown] +bidi-chromium-library › library/clock.spec.ts › setTimeout › throws if no arguments [unknown] +bidi-chromium-library › library/clock.spec.ts › setTimeout › does not throw if |undefined| or |null| is passed as a callback [unknown] +bidi-chromium-library › library/clock.spec.ts › setTimeout › returns numeric id or object with numeric id [unknown] +bidi-chromium-library › library/clock.spec.ts › setTimeout › returns unique id [unknown] +bidi-chromium-library › library/clock.spec.ts › setTimeout › starts id from a large number [unknown] +bidi-chromium-library › library/clock.spec.ts › setTimeout › sets timers on instance [unknown] +bidi-chromium-library › library/clock.spec.ts › setTimeout › parses numeric string times [unknown] +bidi-chromium-library › library/clock.spec.ts › setTimeout › parses no-numeric string times [unknown] +bidi-chromium-library › library/clock.spec.ts › setTimeout › passes setTimeout parameters [unknown] +bidi-chromium-library › library/clock.spec.ts › setTimeout › calls correct timeout on recursive tick [unknown] +bidi-chromium-library › library/clock.spec.ts › setTimeout › does not depend on this [unknown] +bidi-chromium-library › library/clock.spec.ts › setTimeout › is not influenced by forward system clock changes [unknown] +bidi-chromium-library › library/clock.spec.ts › setTimeout › is not influenced by backward system clock changes [unknown] +bidi-chromium-library › library/clock.spec.ts › setTimeout › use of eval when not in node › evals non-function callbacks [unknown] +bidi-chromium-library › library/clock.spec.ts › setTimeout › use of eval when not in node › only evals on global scope [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › triggers immediately without specified delay [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › does not trigger without sufficient delay [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › triggers after sufficient delay [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › triggers simultaneous timers [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › triggers multiple simultaneous timers [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › triggers multiple simultaneous timers with zero callAt [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › waits after setTimeout was called [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › mini integration test [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › triggers even when some throw [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › calls function with global object or null (strict mode) as this [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › triggers in the order scheduled [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › creates updated Date while ticking [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › fires timer in intervals of 13 [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › fires timer in intervals of "13" [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › fires timers in correct order [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › triggers timeouts and intervals in the order scheduled [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › does not fire canceled intervals [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › throws for negative minutes [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › fires nested setTimeout calls properly [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › does not silently catch errors [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › is not influenced by forward system clock changes [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › is not influenced by forward system clock changes 2 [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › is not influenced by forward system clock changes when an error is thrown [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › is not influenced by forward system clock changes when an error is thrown 2 [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › throws on negative ticks [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › creates updated Date while ticking promises [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › fires promise timers in correct order [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › does not fire intervals canceled in a promise [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › fires nested setTimeout calls in user-created promises properly [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › is not influenced by forward system clock changes in promises [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › should settle user-created promises [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › should settle chained user-created promises [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › should settle multiple user-created promises [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › should settle nested user-created promises [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › should settle user-created promises even if some throw [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › should settle user-created promises before calling more timeouts [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › should settle local promises before calling timeouts [unknown] +bidi-chromium-library › library/clock.spec.ts › runFor › should settle local nested promises before calling timeouts [unknown] +bidi-chromium-library › library/clock.spec.ts › clearTimeout › removes timeout [unknown] +bidi-chromium-library › library/clock.spec.ts › clearTimeout › removes interval [unknown] +bidi-chromium-library › library/clock.spec.ts › clearTimeout › removes interval with undefined interval [unknown] +bidi-chromium-library › library/clock.spec.ts › clearTimeout › ignores null argument [unknown] +bidi-chromium-library › library/clock.spec.ts › setInterval › throws if no arguments [unknown] +bidi-chromium-library › library/clock.spec.ts › setInterval › does not throw if |undefined| or |null| is passed as a callback [unknown] +bidi-chromium-library › library/clock.spec.ts › setInterval › returns numeric id or object with numeric id [unknown] +bidi-chromium-library › library/clock.spec.ts › setInterval › returns unique id [unknown] +bidi-chromium-library › library/clock.spec.ts › setInterval › schedules recurring timeout [unknown] +bidi-chromium-library › library/clock.spec.ts › setInterval › is not influenced by forward system clock changes [unknown] +bidi-chromium-library › library/clock.spec.ts › setInterval › is not influenced by backward system clock changes [unknown] +bidi-chromium-library › library/clock.spec.ts › setInterval › does not schedule recurring timeout when cleared [unknown] +bidi-chromium-library › library/clock.spec.ts › setInterval › passes setTimeout parameters [unknown] +bidi-chromium-library › library/clock.spec.ts › clearInterval › removes interval [unknown] +bidi-chromium-library › library/clock.spec.ts › clearInterval › removes interval with undefined interval [unknown] +bidi-chromium-library › library/clock.spec.ts › clearInterval › removes timeout [unknown] +bidi-chromium-library › library/clock.spec.ts › clearInterval › ignores null argument [unknown] +bidi-chromium-library › library/clock.spec.ts › date › provides date constructor [unknown] +bidi-chromium-library › library/clock.spec.ts › date › creates real Date objects [unknown] +bidi-chromium-library › library/clock.spec.ts › date › returns date as string when called as function [unknown] +bidi-chromium-library › library/clock.spec.ts › date › creates Date objects representing clock time [unknown] +bidi-chromium-library › library/clock.spec.ts › date › returns date as string representing clock time [unknown] +bidi-chromium-library › library/clock.spec.ts › date › listens to ticking clock [unknown] +bidi-chromium-library › library/clock.spec.ts › date › listens to system clock changes [unknown] +bidi-chromium-library › library/clock.spec.ts › date › creates regular date when passing timestamp [unknown] +bidi-chromium-library › library/clock.spec.ts › date › creates regular date when passing a date as string [unknown] +bidi-chromium-library › library/clock.spec.ts › date › creates regular date when passing a date as RFC 2822 string [unknown] +bidi-chromium-library › library/clock.spec.ts › date › creates regular date when passing year, month [unknown] +bidi-chromium-library › library/clock.spec.ts › date › creates regular date when passing y, m, d [unknown] +bidi-chromium-library › library/clock.spec.ts › date › creates regular date when passing y, m, d, h [unknown] +bidi-chromium-library › library/clock.spec.ts › date › creates regular date when passing y, m, d, h, m [unknown] +bidi-chromium-library › library/clock.spec.ts › date › creates regular date when passing y, m, d, h, m, s [unknown] +bidi-chromium-library › library/clock.spec.ts › date › creates regular date when passing y, m, d, h, m, s, ms [unknown] +bidi-chromium-library › library/clock.spec.ts › date › returns date as string when calling with arguments [unknown] +bidi-chromium-library › library/clock.spec.ts › date › returns date as string when calling with timestamp [unknown] +bidi-chromium-library › library/clock.spec.ts › date › mirrors native Date.prototype [unknown] +bidi-chromium-library › library/clock.spec.ts › date › supports now method if present [unknown] +bidi-chromium-library › library/clock.spec.ts › date › returns clock.now() [unknown] +bidi-chromium-library › library/clock.spec.ts › date › mirrors parse method [unknown] +bidi-chromium-library › library/clock.spec.ts › date › mirrors UTC method [unknown] +bidi-chromium-library › library/clock.spec.ts › date › mirrors toUTCString method [unknown] +bidi-chromium-library › library/clock.spec.ts › stubTimers › returns clock object [unknown] +bidi-chromium-library › library/clock.spec.ts › stubTimers › takes an object parameter [unknown] +bidi-chromium-library › library/clock.spec.ts › stubTimers › sets initial timestamp [unknown] +bidi-chromium-library › library/clock.spec.ts › stubTimers › replaces global setTimeout [unknown] +bidi-chromium-library › library/clock.spec.ts › stubTimers › global fake setTimeout should return id [unknown] +bidi-chromium-library › library/clock.spec.ts › stubTimers › replaces global clearTimeout [unknown] +bidi-chromium-library › library/clock.spec.ts › stubTimers › replaces global setInterval [unknown] +bidi-chromium-library › library/clock.spec.ts › stubTimers › replaces global clearInterval [unknown] +bidi-chromium-library › library/clock.spec.ts › stubTimers › replaces global performance.now [unknown] +bidi-chromium-library › library/clock.spec.ts › stubTimers › replace Event.prototype.timeStamp [unknown] +bidi-chromium-library › library/clock.spec.ts › stubTimers › uninstalls global performance.now [unknown] +bidi-chromium-library › library/clock.spec.ts › stubTimers › should let performance.mark still be callable after install() (#136) [unknown] +bidi-chromium-library › library/clock.spec.ts › stubTimers › should not alter the global performance properties and methods [unknown] +bidi-chromium-library › library/clock.spec.ts › stubTimers › should replace the getEntries, getEntriesByX methods with noops that return [] [unknown] +bidi-chromium-library › library/clock.spec.ts › stubTimers › deletes global property on uninstall if it was inherited onto the global object [unknown] +bidi-chromium-library › library/clock.spec.ts › stubTimers › fakes Date constructor [unknown] +bidi-chromium-library › library/clock.spec.ts › stubTimers › fake Date constructor should mirror Date's properties [unknown] +bidi-chromium-library › library/clock.spec.ts › stubTimers › mirrors custom Date properties [unknown] +bidi-chromium-library › library/clock.spec.ts › stubTimers › uninstalls Date constructor [unknown] +bidi-chromium-library › library/clock.spec.ts › stubTimers › fakes provided methods [unknown] +bidi-chromium-library › library/clock.spec.ts › stubTimers › resets faked methods [unknown] +bidi-chromium-library › library/clock.spec.ts › stubTimers › does not fake methods not provided [unknown] +bidi-chromium-library › library/clock.spec.ts › requestAnimationFrame › throws if no arguments [unknown] +bidi-chromium-library › library/clock.spec.ts › requestAnimationFrame › returns numeric id or object with numeric id [unknown] +bidi-chromium-library › library/clock.spec.ts › requestAnimationFrame › returns unique id [unknown] +bidi-chromium-library › library/clock.spec.ts › requestAnimationFrame › should run every 16ms [unknown] +bidi-chromium-library › library/clock.spec.ts › requestAnimationFrame › should be called with performance.now() when available [unknown] +bidi-chromium-library › library/clock.spec.ts › requestAnimationFrame › should be called with performance.now() even when performance unavailable [unknown] +bidi-chromium-library › library/clock.spec.ts › requestAnimationFrame › should call callback once [unknown] +bidi-chromium-library › library/clock.spec.ts › requestAnimationFrame › should schedule two callbacks before the next frame at the same time [unknown] +bidi-chromium-library › library/clock.spec.ts › requestAnimationFrame › should properly schedule callback for 3rd frame [unknown] +bidi-chromium-library › library/clock.spec.ts › requestAnimationFrame › should schedule for next frame if on current frame [unknown] +bidi-chromium-library › library/clock.spec.ts › cancelAnimationFrame › removes animation frame [unknown] +bidi-chromium-library › library/clock.spec.ts › cancelAnimationFrame › does not remove timeout [unknown] +bidi-chromium-library › library/clock.spec.ts › cancelAnimationFrame › does not remove interval [unknown] +bidi-chromium-library › library/clock.spec.ts › cancelAnimationFrame › ignores null argument [unknown] +bidi-chromium-library › library/clock.spec.ts › fastForward › ignores timers which wouldn't be run [unknown] +bidi-chromium-library › library/clock.spec.ts › fastForward › pushes back execution time for skipped timers [unknown] +bidi-chromium-library › library/clock.spec.ts › fastForward › handles multiple pending timers and types [unknown] +bidi-chromium-library › library/clock.spec.ts › pauseAt › pause at target time [unknown] +bidi-chromium-library › library/clock.spec.ts › pauseAt › fire target timers [unknown] +bidi-chromium-library › library/clock.spec.ts › pauseAt › returns consumed clicks [unknown] +bidi-chromium-library › library/clock.spec.ts › performance.now() › should start at 0 [unknown] +bidi-chromium-library › library/clock.spec.ts › performance.now() › should run along with clock.tick [unknown] +bidi-chromium-library › library/clock.spec.ts › performance.now() › should listen to multiple ticks in performance.now [unknown] +bidi-chromium-library › library/clock.spec.ts › performance.now() › should run with ticks with timers set [unknown] +bidi-chromium-library › library/clock.spec.ts › requestIdleCallback › throws if no arguments [unknown] +bidi-chromium-library › library/clock.spec.ts › requestIdleCallback › returns numeric id [unknown] +bidi-chromium-library › library/clock.spec.ts › requestIdleCallback › returns unique id [unknown] +bidi-chromium-library › library/clock.spec.ts › requestIdleCallback › runs after all timers [unknown] +bidi-chromium-library › library/clock.spec.ts › requestIdleCallback › runs no later than timeout option even if there are any timers [unknown] +bidi-chromium-library › library/clock.spec.ts › requestIdleCallback › doesn't runs if there are any timers and no timeout option [unknown] +bidi-chromium-library › library/clock.spec.ts › cancelIdleCallback › removes idle callback [unknown] +bidi-chromium-library › library/clock.spec.ts › Intl API › Executes formatRange like normal [unknown] +bidi-chromium-library › library/clock.spec.ts › Intl API › Executes formatRangeToParts like normal [unknown] +bidi-chromium-library › library/clock.spec.ts › Intl API › Executes resolvedOptions like normal [unknown] +bidi-chromium-library › library/clock.spec.ts › Intl API › formatToParts via isFirstOfMonth -> Returns true when passed a timestamp argument that is first of the month [unknown] +bidi-chromium-library › library/clock.spec.ts › Intl API › formatToParts via isFirstOfMonth -> Returns false when passed a timestamp argument that is not first of the month [unknown] +bidi-chromium-library › library/clock.spec.ts › Intl API › formatToParts via isFirstOfMonth -> Returns true when passed no timestamp and system time is first of the month [unknown] +bidi-chromium-library › library/clock.spec.ts › Intl API › formatToParts via isFirstOfMonth -> Returns false when passed no timestamp and system time is not first of the month [unknown] +bidi-chromium-library › library/clock.spec.ts › Intl API › Executes supportedLocalesOf like normal [unknown] +bidi-chromium-library › library/clock.spec.ts › Intl API › Creates a RelativeTimeFormat like normal [unknown] +bidi-chromium-library › library/clock.spec.ts › works with concurrent runFor calls [unknown] +bidi-chromium-library › library/clock.spec.ts › works with slow setTimeout in busy embedder [unknown] +bidi-chromium-library › library/clock.spec.ts › works with slow setTimeout in busy embedder when not paused [unknown] +bidi-chromium-library › library/component-parser.spec.ts › should parse [unknown] +bidi-chromium-library › library/component-parser.spec.ts › should parse short attributes [unknown] +bidi-chromium-library › library/component-parser.spec.ts › should parse all operators [unknown] +bidi-chromium-library › library/component-parser.spec.ts › should tolerate spacing [unknown] +bidi-chromium-library › library/component-parser.spec.ts › should escape [unknown] +bidi-chromium-library › library/component-parser.spec.ts › should parse int values [unknown] +bidi-chromium-library › library/component-parser.spec.ts › should parse float values [unknown] +bidi-chromium-library › library/component-parser.spec.ts › should parse bool [unknown] +bidi-chromium-library › library/component-parser.spec.ts › should parse regex [unknown] +bidi-chromium-library › library/component-parser.spec.ts › should parse identifiers [unknown] +bidi-chromium-library › library/component-parser.spec.ts › should parse unquoted string [unknown] +bidi-chromium-library › library/component-parser.spec.ts › should throw on malformed selector [unknown] +bidi-chromium-library › library/css-parser.spec.ts › should parse css [unknown] +bidi-chromium-library › library/css-parser.spec.ts › should throw on malformed css [unknown] +bidi-chromium-library › library/debug-controller.spec.ts › should pick element [unknown] +bidi-chromium-library › library/debug-controller.spec.ts › should report pages [unknown] +bidi-chromium-library › library/debug-controller.spec.ts › should navigate all [unknown] +bidi-chromium-library › library/debug-controller.spec.ts › should reset for reuse [unknown] +bidi-chromium-library › library/debug-controller.spec.ts › should highlight all [unknown] +bidi-chromium-library › library/debug-controller.spec.ts › should record [unknown] +bidi-chromium-library › library/debug-controller.spec.ts › should record custom data-testid [unknown] +bidi-chromium-library › library/debug-controller.spec.ts › should reset routes before reuse [unknown] +bidi-chromium-library › library/defaultbrowsercontext-1.spec.ts › context.cookies() should work @smoke [unknown] +bidi-chromium-library › library/defaultbrowsercontext-1.spec.ts › context.addCookies() should work [unknown] +bidi-chromium-library › library/defaultbrowsercontext-1.spec.ts › context.clearCookies() should work [unknown] +bidi-chromium-library › library/defaultbrowsercontext-1.spec.ts › should(not) block third party cookies [unknown] +bidi-chromium-library › library/defaultbrowsercontext-1.spec.ts › should support viewport option [unknown] +bidi-chromium-library › library/defaultbrowsercontext-1.spec.ts › should support deviceScaleFactor option [unknown] +bidi-chromium-library › library/defaultbrowsercontext-1.spec.ts › should support userAgent option [unknown] +bidi-chromium-library › library/defaultbrowsercontext-1.spec.ts › should support bypassCSP option [unknown] +bidi-chromium-library › library/defaultbrowsercontext-1.spec.ts › should support javascriptEnabled option [unknown] +bidi-chromium-library › library/defaultbrowsercontext-1.spec.ts › should support httpCredentials option [unknown] +bidi-chromium-library › library/defaultbrowsercontext-1.spec.ts › should support offline option [unknown] +bidi-chromium-library › library/defaultbrowsercontext-1.spec.ts › should support acceptDownloads option [unknown] +bidi-chromium-library › library/defaultbrowsercontext-2.spec.ts › should support hasTouch option [unknown] +bidi-chromium-library › library/defaultbrowsercontext-2.spec.ts › should work in persistent context [unknown] +bidi-chromium-library › library/defaultbrowsercontext-2.spec.ts › should support colorScheme option [unknown] +bidi-chromium-library › library/defaultbrowsercontext-2.spec.ts › should support reducedMotion option [unknown] +bidi-chromium-library › library/defaultbrowsercontext-2.spec.ts › should support forcedColors option [unknown] +bidi-chromium-library › library/defaultbrowsercontext-2.spec.ts › should support timezoneId option [unknown] +bidi-chromium-library › library/defaultbrowsercontext-2.spec.ts › should support locale option [unknown] +bidi-chromium-library › library/defaultbrowsercontext-2.spec.ts › should support geolocation and permissions options [unknown] +bidi-chromium-library › library/defaultbrowsercontext-2.spec.ts › should support ignoreHTTPSErrors option [unknown] +bidi-chromium-library › library/defaultbrowsercontext-2.spec.ts › should support extraHTTPHeaders option [unknown] +bidi-chromium-library › library/defaultbrowsercontext-2.spec.ts › should accept userDataDir [unknown] +bidi-chromium-library › library/defaultbrowsercontext-2.spec.ts › should restore state from userDataDir [unknown] +bidi-chromium-library › library/defaultbrowsercontext-2.spec.ts › should create userDataDir if it does not exist [unknown] +bidi-chromium-library › library/defaultbrowsercontext-2.spec.ts › should have default URL when launching browser [unknown] +bidi-chromium-library › library/defaultbrowsercontext-2.spec.ts › should throw if page argument is passed [unknown] +bidi-chromium-library › library/defaultbrowsercontext-2.spec.ts › should have passed URL when launching with ignoreDefaultArgs: true [unknown] +bidi-chromium-library › library/defaultbrowsercontext-2.spec.ts › should handle timeout [unknown] +bidi-chromium-library › library/defaultbrowsercontext-2.spec.ts › should handle exception [unknown] +bidi-chromium-library › library/defaultbrowsercontext-2.spec.ts › should fire close event for a persistent context [unknown] +bidi-chromium-library › library/defaultbrowsercontext-2.spec.ts › coverage should work [unknown] +bidi-chromium-library › library/defaultbrowsercontext-2.spec.ts › should respect selectors [unknown] +bidi-chromium-library › library/defaultbrowsercontext-2.spec.ts › should connect to a browser with the default page [unknown] +bidi-chromium-library › library/defaultbrowsercontext-2.spec.ts › should support har option [unknown] +bidi-chromium-library › library/defaultbrowsercontext-2.spec.ts › user agent is up to date [unknown] +bidi-chromium-library › library/download.spec.ts › download event › should report download when navigation turns into download @smoke [unknown] +bidi-chromium-library › library/download.spec.ts › download event › should work with Cross-Origin-Opener-Policy [unknown] +bidi-chromium-library › library/download.spec.ts › download event › should report downloads with acceptDownloads: false [unknown] +bidi-chromium-library › library/download.spec.ts › download event › should report downloads with acceptDownloads: true [unknown] +bidi-chromium-library › library/download.spec.ts › download event › should report proper download url when download is from download attribute [unknown] +bidi-chromium-library › library/download.spec.ts › download event › should report downloads for download attribute [unknown] +bidi-chromium-library › library/download.spec.ts › download event › should save to user-specified path without updating original path [unknown] +bidi-chromium-library › library/download.spec.ts › download event › should save to two different paths with multiple saveAs calls [unknown] +bidi-chromium-library › library/download.spec.ts › download event › should save to overwritten filepath [unknown] +bidi-chromium-library › library/download.spec.ts › download event › should create subdirectories when saving to non-existent user-specified path [unknown] +bidi-chromium-library › library/download.spec.ts › download event › should error when saving with downloads disabled [unknown] +bidi-chromium-library › library/download.spec.ts › download event › should error when saving after deletion [unknown] +bidi-chromium-library › library/download.spec.ts › download event › should report non-navigation downloads [unknown] +bidi-chromium-library › library/download.spec.ts › download event › should report download path within page.on('download', …) handler for Files [unknown] +bidi-chromium-library › library/download.spec.ts › download event › should report download path within page.on('download', …) handler for Blobs [unknown] +bidi-chromium-library › library/download.spec.ts › download event › should report alt-click downloads [unknown] +bidi-chromium-library › library/download.spec.ts › download event › should report new window downloads [unknown] +bidi-chromium-library › library/download.spec.ts › download event › should delete file [unknown] +bidi-chromium-library › library/download.spec.ts › download event › should expose stream [unknown] +bidi-chromium-library › library/download.spec.ts › download event › should delete downloads on context destruction [unknown] +bidi-chromium-library › library/download.spec.ts › download event › should delete downloads on browser gone [unknown] +bidi-chromium-library › library/download.spec.ts › download event › should close the context without awaiting the failed download [unknown] +bidi-chromium-library › library/download.spec.ts › download event › should close the context without awaiting the download [unknown] +bidi-chromium-library › library/download.spec.ts › download event › should throw if browser dies [unknown] +bidi-chromium-library › library/download.spec.ts › download event › should download large binary.zip [unknown] +bidi-chromium-library › library/download.spec.ts › download event › should be able to cancel pending downloads [unknown] +bidi-chromium-library › library/download.spec.ts › download event › should not fail explicitly to cancel a download even if that is already finished [unknown] +bidi-chromium-library › library/download.spec.ts › download event › should report downloads with interception [unknown] +bidi-chromium-library › library/download.spec.ts › download event › should emit download event from nested iframes [unknown] +bidi-chromium-library › library/download.spec.ts › should be able to download a PDF file [unknown] +bidi-chromium-library › library/download.spec.ts › should be able to download a inline PDF file via response interception [unknown] +bidi-chromium-library › library/download.spec.ts › should be able to download a inline PDF file via navigation [unknown] +bidi-chromium-library › library/download.spec.ts › should save to user-specified path [unknown] +bidi-chromium-library › library/download.spec.ts › should download even if there is no "attachment" value [unknown] +bidi-chromium-library › library/download.spec.ts › should convert navigation to a resource with unsupported mime type into download [unknown] +bidi-chromium-library › library/download.spec.ts › should download links with data url [unknown] +bidi-chromium-library › library/download.spec.ts › should download successfully when routing [unknown] +bidi-chromium-library › library/downloads-path.spec.ts › downloads path › should keep downloadsPath folder [unknown] +bidi-chromium-library › library/downloads-path.spec.ts › downloads path › should delete downloads when context closes [unknown] +bidi-chromium-library › library/downloads-path.spec.ts › downloads path › should report downloads in downloadsPath folder [unknown] +bidi-chromium-library › library/downloads-path.spec.ts › downloads path › should report downloads in downloadsPath folder with a relative path [unknown] +bidi-chromium-library › library/downloads-path.spec.ts › downloads path › should accept downloads in persistent context [unknown] +bidi-chromium-library › library/downloads-path.spec.ts › downloads path › should delete downloads when persistent context closes [unknown] +bidi-chromium-library › library/emulation-focus.spec.ts › should think that it is focused by default [unknown] +bidi-chromium-library › library/emulation-focus.spec.ts › should think that all pages are focused @smoke [unknown] +bidi-chromium-library › library/emulation-focus.spec.ts › should focus popups by default [unknown] +bidi-chromium-library › library/emulation-focus.spec.ts › should provide target for keyboard events [unknown] +bidi-chromium-library › library/emulation-focus.spec.ts › should not affect mouse event target page [unknown] +bidi-chromium-library › library/emulation-focus.spec.ts › should change document.activeElement [unknown] +bidi-chromium-library › library/emulation-focus.spec.ts › should not affect screenshots [unknown] +bidi-chromium-library › library/emulation-focus.spec.ts › should change focused iframe [unknown] +bidi-chromium-library › library/emulation-focus.spec.ts › should focus with more than one page/context [unknown] +bidi-chromium-library › library/emulation-focus.spec.ts › should not fire blur events when interacting with more than one page/context [unknown] +bidi-chromium-library › library/emulation-focus.spec.ts › should trigger hover state concurrently [unknown] +bidi-chromium-library › library/events/add-listeners.spec.ts › EventEmitter tests › should work [unknown] +bidi-chromium-library › library/events/add-listeners.spec.ts › EventEmitter tests › set max listeners test [unknown] +bidi-chromium-library › library/events/add-listeners.spec.ts › EventEmitter tests › Listener order [unknown] +bidi-chromium-library › library/events/add-listeners.spec.ts › EventEmitter tests › listener type check [unknown] +bidi-chromium-library › library/events/check-listener-leaks.spec.ts › defaultMaxListeners [unknown] +bidi-chromium-library › library/events/check-listener-leaks.spec.ts › process-wide [unknown] +bidi-chromium-library › library/events/check-listener-leaks.spec.ts › _maxListeners still has precedence over defaultMaxListeners [unknown] +bidi-chromium-library › library/events/events-list.spec.ts › EventEmitter › should maintain event names correctly [unknown] +bidi-chromium-library › library/events/listener-count.spec.ts › Listener count test [unknown] +bidi-chromium-library › library/events/listeners-side-effects.spec.ts › listeners empty check [unknown] +bidi-chromium-library › library/events/listeners.spec.ts › EventEmitter listeners with one listener [unknown] +bidi-chromium-library › library/events/listeners.spec.ts › Array copy modification does not modify orig [unknown] +bidi-chromium-library › library/events/listeners.spec.ts › Modify array copy after multiple adds [unknown] +bidi-chromium-library › library/events/listeners.spec.ts › listeners and once [unknown] +bidi-chromium-library › library/events/listeners.spec.ts › listeners with conflicting types [unknown] +bidi-chromium-library › library/events/listeners.spec.ts › EventEmitter with no members [unknown] +bidi-chromium-library › library/events/listeners.spec.ts › listeners on prototype [unknown] +bidi-chromium-library › library/events/listeners.spec.ts › raw listeners [unknown] +bidi-chromium-library › library/events/listeners.spec.ts › raw listeners order [unknown] +bidi-chromium-library › library/events/max-listeners.spec.ts › emit maxListeners on e [unknown] +bidi-chromium-library › library/events/method-names.spec.ts › EventEmitter prototype test [unknown] +bidi-chromium-library › library/events/modify-in-emit.spec.ts › add and remove listeners [unknown] +bidi-chromium-library › library/events/modify-in-emit.spec.ts › removing callbacks in emit [unknown] +bidi-chromium-library › library/events/num-args.spec.ts › should work [unknown] +bidi-chromium-library › library/events/once.spec.ts › should work [unknown] +bidi-chromium-library › library/events/once.spec.ts › once() has different code paths based on the number of arguments being emitted [unknown] +bidi-chromium-library › library/events/prepend.spec.ts › EventEmitter functionality [unknown] +bidi-chromium-library › library/events/prepend.spec.ts › Verify that the listener must be a function [unknown] +bidi-chromium-library › library/events/remove-all-listeners-wait.spec.ts › should not throw with ignoreErrors [unknown] +bidi-chromium-library › library/events/remove-all-listeners-wait.spec.ts › should wait [unknown] +bidi-chromium-library › library/events/remove-all-listeners-wait.spec.ts › should wait all [unknown] +bidi-chromium-library › library/events/remove-all-listeners-wait.spec.ts › wait should throw [unknown] +bidi-chromium-library › library/events/remove-all-listeners.spec.ts › listeners [unknown] +bidi-chromium-library › library/events/remove-all-listeners.spec.ts › removeAllListeners removes all listeners [unknown] +bidi-chromium-library › library/events/remove-all-listeners.spec.ts › removeAllListeners with no event type [unknown] +bidi-chromium-library › library/events/remove-all-listeners.spec.ts › listener count after removeAllListeners [unknown] +bidi-chromium-library › library/events/remove-all-listeners.spec.ts › removeAllListeners returns EventEmitter [unknown] +bidi-chromium-library › library/events/remove-all-listeners.spec.ts › removeAllListeners on undefined _events [unknown] +bidi-chromium-library › library/events/remove-listeners.spec.ts › First test [unknown] +bidi-chromium-library › library/events/remove-listeners.spec.ts › Second test [unknown] +bidi-chromium-library › library/events/remove-listeners.spec.ts › Third test [unknown] +bidi-chromium-library › library/events/remove-listeners.spec.ts › Fourth test [unknown] +bidi-chromium-library › library/events/remove-listeners.spec.ts › Fifth test [unknown] +bidi-chromium-library › library/events/remove-listeners.spec.ts › Sixth test [unknown] +bidi-chromium-library › library/events/remove-listeners.spec.ts › Seventh test [unknown] +bidi-chromium-library › library/events/remove-listeners.spec.ts › Eighth test [unknown] +bidi-chromium-library › library/events/remove-listeners.spec.ts › Ninth test [unknown] +bidi-chromium-library › library/events/remove-listeners.spec.ts › Tenth test [unknown] +bidi-chromium-library › library/events/set-max-listeners-side-effects.spec.ts › set max listeners test [unknown] +bidi-chromium-library › library/events/special-event-names.spec.ts › should support special event names [unknown] +bidi-chromium-library › library/events/subclass.spec.ts › myee instance [unknown] +bidi-chromium-library › library/events/subclass.spec.ts › MyEE2 instance [unknown] +bidi-chromium-library › library/events/symbols.spec.ts › should support symbols [unknown] +bidi-chromium-library › library/favicon.spec.ts › should load svg favicon with prefer-color-scheme [unknown] +bidi-chromium-library › library/fetch-proxy.spec.ts › context request should pick up proxy credentials [unknown] +bidi-chromium-library › library/fetch-proxy.spec.ts › global request should pick up proxy credentials [unknown] +bidi-chromium-library › library/fetch-proxy.spec.ts › should work with context level proxy [unknown] +bidi-chromium-library › library/fetch-proxy.spec.ts › should support proxy.bypass [unknown] +bidi-chromium-library › library/fetch-proxy.spec.ts › should use socks proxy [unknown] +bidi-chromium-library › library/firefox/launcher.spec.ts › should pass firefox user preferences [unknown] +bidi-chromium-library › library/firefox/launcher.spec.ts › should pass firefox user preferences in persistent [unknown] +bidi-chromium-library › library/geolocation.spec.ts › should work @smoke [unknown] +bidi-chromium-library › library/geolocation.spec.ts › should throw when invalid longitude [unknown] +bidi-chromium-library › library/geolocation.spec.ts › should isolate contexts [unknown] +bidi-chromium-library › library/geolocation.spec.ts › should throw with missing latitude [unknown] +bidi-chromium-library › library/geolocation.spec.ts › should not modify passed default options object [unknown] +bidi-chromium-library › library/geolocation.spec.ts › should throw with missing longitude in default options [unknown] +bidi-chromium-library › library/geolocation.spec.ts › should use context options [unknown] +bidi-chromium-library › library/geolocation.spec.ts › watchPosition should be notified [unknown] +bidi-chromium-library › library/geolocation.spec.ts › should use context options for popup [unknown] +bidi-chromium-library › library/global-fetch-cookie.spec.ts › should store cookie from Set-Cookie header [unknown] +bidi-chromium-library › library/global-fetch-cookie.spec.ts › should filter outgoing cookies by path [unknown] +bidi-chromium-library › library/global-fetch-cookie.spec.ts › should filter outgoing cookies by domain [unknown] +bidi-chromium-library › library/global-fetch-cookie.spec.ts › should do case-insensitive match of cookie domain [unknown] +bidi-chromium-library › library/global-fetch-cookie.spec.ts › should do case-insensitive match of request domain [unknown] +bidi-chromium-library › library/global-fetch-cookie.spec.ts › should send secure cookie over https [unknown] +bidi-chromium-library › library/global-fetch-cookie.spec.ts › should send secure cookie over http for localhost [unknown] +bidi-chromium-library › library/global-fetch-cookie.spec.ts › should send not expired cookies [unknown] +bidi-chromium-library › library/global-fetch-cookie.spec.ts › should remove expired cookies [unknown] +bidi-chromium-library › library/global-fetch-cookie.spec.ts › should remove cookie with negative max-age [unknown] +bidi-chromium-library › library/global-fetch-cookie.spec.ts › should remove cookie with expires far in the past [unknown] +bidi-chromium-library › library/global-fetch-cookie.spec.ts › should store cookie from Set-Cookie header even if it contains equal signs [unknown] +bidi-chromium-library › library/global-fetch-cookie.spec.ts › should override cookie from Set-Cookie header [unknown] +bidi-chromium-library › library/global-fetch-cookie.spec.ts › should override cookie from Set-Cookie header even if it expired [unknown] +bidi-chromium-library › library/global-fetch-cookie.spec.ts › should export cookies to storage state [unknown] +bidi-chromium-library › library/global-fetch-cookie.spec.ts › should preserve local storage on import/export of storage state [unknown] +bidi-chromium-library › library/global-fetch-cookie.spec.ts › should send cookies from storage state [unknown] +bidi-chromium-library › library/global-fetch-cookie.spec.ts › storage state should round-trip through file [unknown] +bidi-chromium-library › library/global-fetch-cookie.spec.ts › should work with empty storage state [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › fetch should work @smoke [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › delete should work @smoke [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › get should work @smoke [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › head should work @smoke [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › patch should work @smoke [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › post should work @smoke [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › put should work @smoke [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should dispose global request [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should support global userAgent option [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should support global timeout option [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should propagate extra http headers with redirects [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should support global httpCredentials option [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should return error with wrong credentials [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should work with correct credentials and matching origin [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should work with correct credentials and matching origin case insensitive [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should return error with correct credentials and mismatching scheme [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should return error with correct credentials and mismatching hostname [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should return error with correct credentials and mismatching port [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should support WWW-Authenticate: Basic [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should support HTTPCredentials.send [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should support global ignoreHTTPSErrors option [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should propagate ignoreHTTPSErrors on redirects [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should resolve url relative to global baseURL option [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should set playwright as user-agent [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should be able to construct with context options [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should return empty body [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should abort requests when context is disposed [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should abort redirected requests when context is disposed [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should remove content-length from redirected post requests [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should json stringify object body when content-type is application/json [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should not double stringify object body when content-type is application/json [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should json stringify array body when content-type is application/json [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should not double stringify array body when content-type is application/json [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should json stringify string body when content-type is application/json [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should not double stringify string body when content-type is application/json [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should json stringify string (falsey) body when content-type is application/json [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should not double stringify string (falsey) body when content-type is application/json [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should json stringify bool body when content-type is application/json [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should not double stringify bool body when content-type is application/json [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should json stringify bool (false) body when content-type is application/json [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should not double stringify bool (false) body when content-type is application/json [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should json stringify number body when content-type is application/json [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should not double stringify number body when content-type is application/json [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should json stringify number (falsey) body when content-type is application/json [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should not double stringify number (falsey) body when content-type is application/json [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should json stringify null body when content-type is application/json [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should not double stringify null body when content-type is application/json [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should json stringify literal string undefined body when content-type is application/json [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should not double stringify literal string undefined body when content-type is application/json [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should accept already serialized data as Buffer when content-type is application/json [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should have nice toString [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should not fail on empty body with encoding [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should return body for failing requests [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should throw an error when maxRedirects is exceeded [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should not follow redirects when maxRedirects is set to 0 [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should throw an error when maxRedirects is less than 0 [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should keep headers capitalization [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should serialize post data on the client [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should throw after dispose [unknown] +bidi-chromium-library › library/global-fetch.spec.ts › should retry ECONNRESET [unknown] +bidi-chromium-library › library/har.spec.ts › should throw without path [unknown] +bidi-chromium-library › library/har.spec.ts › should have version and creator [unknown] +bidi-chromium-library › library/har.spec.ts › should have browser [unknown] +bidi-chromium-library › library/har.spec.ts › should have pages [unknown] +bidi-chromium-library › library/har.spec.ts › should have pages in persistent context [unknown] +bidi-chromium-library › library/har.spec.ts › should include request [unknown] +bidi-chromium-library › library/har.spec.ts › should include response [unknown] +bidi-chromium-library › library/har.spec.ts › should include redirectURL [unknown] +bidi-chromium-library › library/har.spec.ts › should include query params [unknown] +bidi-chromium-library › library/har.spec.ts › should include postData [unknown] +bidi-chromium-library › library/har.spec.ts › should include binary postData [unknown] +bidi-chromium-library › library/har.spec.ts › should include form params [unknown] +bidi-chromium-library › library/har.spec.ts › should include cookies [unknown] +bidi-chromium-library › library/har.spec.ts › should include set-cookies [unknown] +bidi-chromium-library › library/har.spec.ts › should skip invalid Expires [unknown] +bidi-chromium-library › library/har.spec.ts › should include set-cookies with comma [unknown] +bidi-chromium-library › library/har.spec.ts › should include secure set-cookies [unknown] +bidi-chromium-library › library/har.spec.ts › should record request overrides [unknown] +bidi-chromium-library › library/har.spec.ts › should include content @smoke [unknown] +bidi-chromium-library › library/har.spec.ts › should use attach mode for zip extension [unknown] +bidi-chromium-library › library/har.spec.ts › should omit content [unknown] +bidi-chromium-library › library/har.spec.ts › should omit content legacy [unknown] +bidi-chromium-library › library/har.spec.ts › should attach content [unknown] +bidi-chromium-library › library/har.spec.ts › should filter by glob [unknown] +bidi-chromium-library › library/har.spec.ts › should filter by regexp [unknown] +bidi-chromium-library › library/har.spec.ts › should include sizes [unknown] +bidi-chromium-library › library/har.spec.ts › should work with gzip compression [unknown] +bidi-chromium-library › library/har.spec.ts › should calculate time [unknown] +bidi-chromium-library › library/har.spec.ts › should return receive time [unknown] +bidi-chromium-library › library/har.spec.ts › should report the correct _transferSize with PNG files [unknown] +bidi-chromium-library › library/har.spec.ts › should have -1 _transferSize when its a failed request [unknown] +bidi-chromium-library › library/har.spec.ts › should record failed request headers [unknown] +bidi-chromium-library › library/har.spec.ts › should record failed request overrides [unknown] +bidi-chromium-library › library/har.spec.ts › should report the correct request body size [unknown] +bidi-chromium-library › library/har.spec.ts › should report the correct request body size when the bodySize is 0 [unknown] +bidi-chromium-library › library/har.spec.ts › should report the correct response body size when the bodySize is 0 [unknown] +bidi-chromium-library › library/har.spec.ts › should have popup requests [unknown] +bidi-chromium-library › library/har.spec.ts › should not contain internal pages [unknown] +bidi-chromium-library › library/har.spec.ts › should have connection details [unknown] +bidi-chromium-library › library/har.spec.ts › should have security details [unknown] +bidi-chromium-library › library/har.spec.ts › should have connection details for redirects [unknown] +bidi-chromium-library › library/har.spec.ts › should have connection details for failed requests [unknown] +bidi-chromium-library › library/har.spec.ts › should return server address directly from response [unknown] +bidi-chromium-library › library/har.spec.ts › should return security details directly from response [unknown] +bidi-chromium-library › library/har.spec.ts › should contain http2 for http2 requests [unknown] +bidi-chromium-library › library/har.spec.ts › should filter favicon and favicon redirects [unknown] +bidi-chromium-library › library/har.spec.ts › should have different hars for concurrent contexts [unknown] +bidi-chromium-library › library/har.spec.ts › should include API request [unknown] +bidi-chromium-library › library/har.spec.ts › should not hang on resources served from cache [unknown] +bidi-chromium-library › library/har.spec.ts › should not hang on slow chunked response [unknown] +bidi-chromium-library › library/headful.spec.ts › should have default url when launching browser @smoke [unknown] +bidi-chromium-library › library/headful.spec.ts › should close browser with beforeunload page [unknown] +bidi-chromium-library › library/headful.spec.ts › should close browsercontext with pending beforeunload dialog [unknown] +bidi-chromium-library › library/headful.spec.ts › should not crash when creating second context [unknown] +bidi-chromium-library › library/headful.spec.ts › should click when viewport size is larger than screen [unknown] +bidi-chromium-library › library/headful.spec.ts › should dispatch click events to oversized viewports [unknown] +bidi-chromium-library › library/headful.spec.ts › should click background tab [unknown] +bidi-chromium-library › library/headful.spec.ts › should close browser after context menu was triggered [unknown] +bidi-chromium-library › library/headful.spec.ts › should(not) block third party cookies [unknown] +bidi-chromium-library › library/headful.spec.ts › should not block third party SameSite=None cookies [unknown] +bidi-chromium-library › library/headful.spec.ts › should not override viewport size when passed null [unknown] +bidi-chromium-library › library/headful.spec.ts › Page.bringToFront should work [unknown] +bidi-chromium-library › library/headful.spec.ts › should click in OOPIF [unknown] +bidi-chromium-library › library/headful.spec.ts › should click bottom row w/ infobar in OOPIF [unknown] +bidi-chromium-library › library/headful.spec.ts › headless and headful should use same default fonts [unknown] +bidi-chromium-library › library/hit-target.spec.ts › should block all events when hit target is wrong [unknown] +bidi-chromium-library › library/hit-target.spec.ts › should block click when mousedown fails [unknown] +bidi-chromium-library › library/hit-target.spec.ts › should click when element detaches in mousedown [unknown] +bidi-chromium-library › library/hit-target.spec.ts › should block all events when hit target is wrong and element detaches [unknown] +bidi-chromium-library › library/hit-target.spec.ts › should not block programmatic events [unknown] +bidi-chromium-library › library/hit-target.spec.ts › should click the button again after document.write [unknown] +bidi-chromium-library › library/hit-target.spec.ts › should work with mui select [unknown] +bidi-chromium-library › library/hit-target.spec.ts › should work with drag and drop that moves the element under cursor [unknown] +bidi-chromium-library › library/hit-target.spec.ts › should work with block inside inline [unknown] +bidi-chromium-library › library/hit-target.spec.ts › should work with block-block-block inside inline-inline [unknown] +bidi-chromium-library › library/hit-target.spec.ts › should work with block inside inline in shadow dom [unknown] +bidi-chromium-library › library/hit-target.spec.ts › should not click iframe overlaying the target [unknown] +bidi-chromium-library › library/hit-target.spec.ts › should not click an element overlaying iframe with the target [unknown] +bidi-chromium-library › library/hit-target.spec.ts › should click into frame inside closed shadow root [unknown] +bidi-chromium-library › library/hit-target.spec.ts › should click an element inside closed shadow root [unknown] +bidi-chromium-library › library/hit-target.spec.ts › should detect overlay from another shadow root [unknown] +bidi-chromium-library › library/hit-target.spec.ts › should detect overlaid element in a transformed iframe [unknown] +bidi-chromium-library › library/hit-target.spec.ts › should click in iframe with padding [unknown] +bidi-chromium-library › library/hit-target.spec.ts › should click in iframe with padding 2 [unknown] +bidi-chromium-library › library/hit-target.spec.ts › should click in custom element [unknown] +bidi-chromium-library › library/ignorehttpserrors.spec.ts › should work @smoke [unknown] +bidi-chromium-library › library/ignorehttpserrors.spec.ts › should isolate contexts [unknown] +bidi-chromium-library › library/ignorehttpserrors.spec.ts › should work with mixed content [unknown] +bidi-chromium-library › library/ignorehttpserrors.spec.ts › should work with WebSocket [unknown] +bidi-chromium-library › library/ignorehttpserrors.spec.ts › should fail with WebSocket if not ignored [unknown] +bidi-chromium-library › library/ignorehttpserrors.spec.ts › serviceWorker should intercept document request [unknown] +bidi-chromium-library › library/inspector/cli-codegen-1.spec.ts › cli codegen › should click [unknown] +bidi-chromium-library › library/inspector/cli-codegen-1.spec.ts › cli codegen › should ignore programmatic events [unknown] +bidi-chromium-library › library/inspector/cli-codegen-1.spec.ts › cli codegen › should click after same-document navigation [unknown] +bidi-chromium-library › library/inspector/cli-codegen-1.spec.ts › cli codegen › should make a positioned click on a canvas [unknown] +bidi-chromium-library › library/inspector/cli-codegen-1.spec.ts › cli codegen › should work with TrustedTypes [unknown] +bidi-chromium-library › library/inspector/cli-codegen-1.spec.ts › cli codegen › should not target selector preview by text regexp [unknown] +bidi-chromium-library › library/inspector/cli-codegen-1.spec.ts › cli codegen › should fill [unknown] +bidi-chromium-library › library/inspector/cli-codegen-1.spec.ts › cli codegen › should fill japanese text [unknown] +bidi-chromium-library › library/inspector/cli-codegen-1.spec.ts › cli codegen › should fill textarea [unknown] +bidi-chromium-library › library/inspector/cli-codegen-1.spec.ts › cli codegen › should fill textarea with new lines at the end [unknown] +bidi-chromium-library › library/inspector/cli-codegen-1.spec.ts › cli codegen › should fill [contentEditable] [unknown] +bidi-chromium-library › library/inspector/cli-codegen-1.spec.ts › cli codegen › should press [unknown] +bidi-chromium-library › library/inspector/cli-codegen-1.spec.ts › cli codegen › should update selected element after pressing Tab [unknown] +bidi-chromium-library › library/inspector/cli-codegen-1.spec.ts › cli codegen › should record ArrowDown [unknown] +bidi-chromium-library › library/inspector/cli-codegen-1.spec.ts › cli codegen › should emit single keyup on ArrowDown [unknown] +bidi-chromium-library › library/inspector/cli-codegen-1.spec.ts › cli codegen › should check [unknown] +bidi-chromium-library › library/inspector/cli-codegen-1.spec.ts › cli codegen › should check a radio button [unknown] +bidi-chromium-library › library/inspector/cli-codegen-1.spec.ts › cli codegen › should check with keyboard [unknown] +bidi-chromium-library › library/inspector/cli-codegen-1.spec.ts › cli codegen › should uncheck [unknown] +bidi-chromium-library › library/inspector/cli-codegen-1.spec.ts › cli codegen › should select [unknown] +bidi-chromium-library › library/inspector/cli-codegen-1.spec.ts › cli codegen › should select with size attribute [unknown] +bidi-chromium-library › library/inspector/cli-codegen-1.spec.ts › cli codegen › should await popup [unknown] +bidi-chromium-library › library/inspector/cli-codegen-1.spec.ts › cli codegen › should assert navigation [unknown] +bidi-chromium-library › library/inspector/cli-codegen-1.spec.ts › cli codegen › should ignore AltGraph [unknown] +bidi-chromium-library › library/inspector/cli-codegen-1.spec.ts › cli codegen › should middle click [unknown] +bidi-chromium-library › library/inspector/cli-codegen-1.spec.ts › cli codegen › should record slider [unknown] +bidi-chromium-library › library/inspector/cli-codegen-1.spec.ts › cli codegen › should click button with nested div [unknown] +bidi-chromium-library › library/inspector/cli-codegen-1.spec.ts › cli codegen › should record omnibox navigations after performAction [unknown] +bidi-chromium-library › library/inspector/cli-codegen-1.spec.ts › cli codegen › should record omnibox navigations after recordAction [unknown] +bidi-chromium-library › library/inspector/cli-codegen-1.spec.ts › cli codegen › should not throw csp directive violation errors [unknown] +bidi-chromium-library › library/inspector/cli-codegen-2.spec.ts › cli codegen › should contain open page [unknown] +bidi-chromium-library › library/inspector/cli-codegen-2.spec.ts › cli codegen › should contain second page [unknown] +bidi-chromium-library › library/inspector/cli-codegen-2.spec.ts › cli codegen › should contain close page [unknown] +bidi-chromium-library › library/inspector/cli-codegen-2.spec.ts › cli codegen › should not lead to an error if html gets clicked [unknown] +bidi-chromium-library › library/inspector/cli-codegen-2.spec.ts › cli codegen › should upload a single file [unknown] +bidi-chromium-library › library/inspector/cli-codegen-2.spec.ts › cli codegen › should upload multiple files [unknown] +bidi-chromium-library › library/inspector/cli-codegen-2.spec.ts › cli codegen › should clear files [unknown] +bidi-chromium-library › library/inspector/cli-codegen-2.spec.ts › cli codegen › should download files [unknown] +bidi-chromium-library › library/inspector/cli-codegen-2.spec.ts › cli codegen › should handle dialogs [unknown] +bidi-chromium-library › library/inspector/cli-codegen-2.spec.ts › cli codegen › should handle history.postData [unknown] +bidi-chromium-library › library/inspector/cli-codegen-2.spec.ts › cli codegen › should record open in a new tab with url [unknown] +bidi-chromium-library › library/inspector/cli-codegen-2.spec.ts › cli codegen › should not clash pages [unknown] +bidi-chromium-library › library/inspector/cli-codegen-2.spec.ts › cli codegen › click should emit events in order [unknown] +bidi-chromium-library › library/inspector/cli-codegen-2.spec.ts › cli codegen › should update hover model on action [unknown] +bidi-chromium-library › library/inspector/cli-codegen-2.spec.ts › cli codegen › should reset hover model on action when element detaches [unknown] +bidi-chromium-library › library/inspector/cli-codegen-2.spec.ts › cli codegen › should update active model on action [unknown] +bidi-chromium-library › library/inspector/cli-codegen-2.spec.ts › cli codegen › should check input with chaining id [unknown] +bidi-chromium-library › library/inspector/cli-codegen-2.spec.ts › cli codegen › should record navigations after identical pushState [unknown] +bidi-chromium-library › library/inspector/cli-codegen-2.spec.ts › cli codegen › should --save-trace [unknown] +bidi-chromium-library › library/inspector/cli-codegen-2.spec.ts › cli codegen › should save assets via SIGINT [unknown] +bidi-chromium-library › library/inspector/cli-codegen-2.spec.ts › cli codegen › should fill tricky characters [unknown] +bidi-chromium-library › library/inspector/cli-codegen-2.spec.ts › should --test-id-attribute [unknown] +bidi-chromium-library › library/inspector/cli-codegen-3.spec.ts › cli codegen › should click locator.first [unknown] +bidi-chromium-library › library/inspector/cli-codegen-3.spec.ts › cli codegen › should click locator.nth [unknown] +bidi-chromium-library › library/inspector/cli-codegen-3.spec.ts › cli codegen › should generate frame locators [unknown] +bidi-chromium-library › library/inspector/cli-codegen-3.spec.ts › cli codegen › should generate frame locators with special characters in name attribute [unknown] +bidi-chromium-library › library/inspector/cli-codegen-3.spec.ts › cli codegen › should generate frame locators with title attribute [unknown] +bidi-chromium-library › library/inspector/cli-codegen-3.spec.ts › cli codegen › should generate frame locators with name attribute [unknown] +bidi-chromium-library › library/inspector/cli-codegen-3.spec.ts › cli codegen › should generate frame locators with id attribute [unknown] +bidi-chromium-library › library/inspector/cli-codegen-3.spec.ts › cli codegen › should generate frame locators with testId [unknown] +bidi-chromium-library › library/inspector/cli-codegen-3.spec.ts › cli codegen › should generate role locators undef frame locators [unknown] +bidi-chromium-library › library/inspector/cli-codegen-3.spec.ts › cli codegen › should generate getByTestId [unknown] +bidi-chromium-library › library/inspector/cli-codegen-3.spec.ts › cli codegen › should generate getByPlaceholder [unknown] +bidi-chromium-library › library/inspector/cli-codegen-3.spec.ts › cli codegen › should generate getByAltText [unknown] +bidi-chromium-library › library/inspector/cli-codegen-3.spec.ts › cli codegen › should generate getByLabel [unknown] +bidi-chromium-library › library/inspector/cli-codegen-3.spec.ts › cli codegen › should generate getByLabel without regex [unknown] +bidi-chromium-library › library/inspector/cli-codegen-3.spec.ts › cli codegen › should consume pointer events [unknown] +bidi-chromium-library › library/inspector/cli-codegen-3.spec.ts › cli codegen › should consume contextmenu events, despite a custom context menu [unknown] +bidi-chromium-library › library/inspector/cli-codegen-3.spec.ts › cli codegen › should assert value [unknown] +bidi-chromium-library › library/inspector/cli-codegen-3.spec.ts › cli codegen › should assert value on disabled input [unknown] +bidi-chromium-library › library/inspector/cli-codegen-3.spec.ts › cli codegen › should assert value on disabled select [unknown] +bidi-chromium-library › library/inspector/cli-codegen-3.spec.ts › cli codegen › should assert visibility [unknown] +bidi-chromium-library › library/inspector/cli-codegen-csharp.spec.ts › should print the correct imports and context options [unknown] +bidi-chromium-library › library/inspector/cli-codegen-csharp.spec.ts › should print the correct context options for custom settings [unknown] +bidi-chromium-library › library/inspector/cli-codegen-csharp.spec.ts › should print the correct context options when using a device [unknown] +bidi-chromium-library › library/inspector/cli-codegen-csharp.spec.ts › should print the correct context options when using a device and additional options [unknown] +bidi-chromium-library › library/inspector/cli-codegen-csharp.spec.ts › should print load/save storageState [unknown] +bidi-chromium-library › library/inspector/cli-codegen-csharp.spec.ts › should work with --save-har [unknown] +bidi-chromium-library › library/inspector/cli-codegen-csharp.spec.ts › should not print context options method override in nunit if no options were passed [unknown] +bidi-chromium-library › library/inspector/cli-codegen-csharp.spec.ts › should print context options method override in nunit if options were passed [unknown] +bidi-chromium-library › library/inspector/cli-codegen-csharp.spec.ts › should not print context options method override in mstest if no options were passed [unknown] +bidi-chromium-library › library/inspector/cli-codegen-csharp.spec.ts › should print context options method override in mstest if options were passed [unknown] +bidi-chromium-library › library/inspector/cli-codegen-csharp.spec.ts › should print a valid basic program in mstest [unknown] +bidi-chromium-library › library/inspector/cli-codegen-csharp.spec.ts › should print a valid basic program in nunit [unknown] +bidi-chromium-library › library/inspector/cli-codegen-java.spec.ts › should print the correct imports and context options [unknown] +bidi-chromium-library › library/inspector/cli-codegen-java.spec.ts › should print the correct context options for custom settings [unknown] +bidi-chromium-library › library/inspector/cli-codegen-java.spec.ts › should print the correct context options when using a device [unknown] +bidi-chromium-library › library/inspector/cli-codegen-java.spec.ts › should print the correct context options when using a device and additional options [unknown] +bidi-chromium-library › library/inspector/cli-codegen-java.spec.ts › should print load/save storage_state [unknown] +bidi-chromium-library › library/inspector/cli-codegen-java.spec.ts › should work with --save-har [unknown] +bidi-chromium-library › library/inspector/cli-codegen-java.spec.ts › should print the correct imports in junit [unknown] +bidi-chromium-library › library/inspector/cli-codegen-java.spec.ts › should print a valid basic program in junit [unknown] +bidi-chromium-library › library/inspector/cli-codegen-javascript.spec.ts › should print the correct imports and context options [unknown] +bidi-chromium-library › library/inspector/cli-codegen-javascript.spec.ts › should print the correct context options for custom settings [unknown] +bidi-chromium-library › library/inspector/cli-codegen-javascript.spec.ts › should print the correct context options when using a device [unknown] +bidi-chromium-library › library/inspector/cli-codegen-javascript.spec.ts › should print the correct context options when using a device and additional options [unknown] +bidi-chromium-library › library/inspector/cli-codegen-javascript.spec.ts › should save the codegen output to a file if specified [unknown] +bidi-chromium-library › library/inspector/cli-codegen-javascript.spec.ts › should print load/save storageState [unknown] +bidi-chromium-library › library/inspector/cli-codegen-pytest.spec.ts › should print the correct imports and context options [unknown] +bidi-chromium-library › library/inspector/cli-codegen-pytest.spec.ts › should print the correct context options when using a device and lang [unknown] +bidi-chromium-library › library/inspector/cli-codegen-pytest.spec.ts › should save the codegen output to a file if specified [unknown] +bidi-chromium-library › library/inspector/cli-codegen-python-async.spec.ts › should print the correct imports and context options [unknown] +bidi-chromium-library › library/inspector/cli-codegen-python-async.spec.ts › should print the correct context options for custom settings [unknown] +bidi-chromium-library › library/inspector/cli-codegen-python-async.spec.ts › should print the correct context options when using a device [unknown] +bidi-chromium-library › library/inspector/cli-codegen-python-async.spec.ts › should print the correct context options when using a device and additional options [unknown] +bidi-chromium-library › library/inspector/cli-codegen-python-async.spec.ts › should save the codegen output to a file if specified [unknown] +bidi-chromium-library › library/inspector/cli-codegen-python-async.spec.ts › should print load/save storage_state [unknown] +bidi-chromium-library › library/inspector/cli-codegen-python-async.spec.ts › should work with --save-har [unknown] +bidi-chromium-library › library/inspector/cli-codegen-python.spec.ts › should print the correct imports and context options [unknown] +bidi-chromium-library › library/inspector/cli-codegen-python.spec.ts › should print the correct context options for custom settings [unknown] +bidi-chromium-library › library/inspector/cli-codegen-python.spec.ts › should print the correct context options when using a device [unknown] +bidi-chromium-library › library/inspector/cli-codegen-python.spec.ts › should print the correct context options when using a device and additional options [unknown] +bidi-chromium-library › library/inspector/cli-codegen-python.spec.ts › should save the codegen output to a file if specified [unknown] +bidi-chromium-library › library/inspector/cli-codegen-python.spec.ts › should print load/save storage_state [unknown] +bidi-chromium-library › library/inspector/cli-codegen-test.spec.ts › should print the correct imports and context options [unknown] +bidi-chromium-library › library/inspector/cli-codegen-test.spec.ts › should print the correct context options for custom settings [unknown] +bidi-chromium-library › library/inspector/cli-codegen-test.spec.ts › should print the correct context options when using a device [unknown] +bidi-chromium-library › library/inspector/cli-codegen-test.spec.ts › should print the correct context options when using a device and additional options [unknown] +bidi-chromium-library › library/inspector/cli-codegen-test.spec.ts › should print load storageState [unknown] +bidi-chromium-library › library/inspector/cli-codegen-test.spec.ts › should work with --save-har [unknown] +bidi-chromium-library › library/inspector/console-api.spec.ts › should support playwright.$, playwright.$$ [unknown] +bidi-chromium-library › library/inspector/console-api.spec.ts › should support playwright.selector [unknown] +bidi-chromium-library › library/inspector/console-api.spec.ts › should support playwright.locator.value [unknown] +bidi-chromium-library › library/inspector/console-api.spec.ts › should support playwright.locator.values [unknown] +bidi-chromium-library › library/inspector/console-api.spec.ts › should support playwright.locator({ has }) [unknown] +bidi-chromium-library › library/inspector/console-api.spec.ts › should support playwright.locator({ hasNot }) [unknown] +bidi-chromium-library › library/inspector/console-api.spec.ts › should support locator.and() [unknown] +bidi-chromium-library › library/inspector/console-api.spec.ts › should support locator.or() [unknown] +bidi-chromium-library › library/inspector/console-api.spec.ts › should support playwright.getBy* [unknown] +bidi-chromium-library › library/inspector/console-api.spec.ts › expected properties on playwright object [unknown] +bidi-chromium-library › library/inspector/pause.spec.ts › should resume when closing inspector [unknown] +bidi-chromium-library › library/inspector/pause.spec.ts › should not reset timeouts [unknown] +bidi-chromium-library › library/inspector/pause.spec.ts › pause › should pause and resume the script [unknown] +bidi-chromium-library › library/inspector/pause.spec.ts › pause › should pause and resume the script with keyboard shortcut [unknown] +bidi-chromium-library › library/inspector/pause.spec.ts › pause › should resume from console [unknown] +bidi-chromium-library › library/inspector/pause.spec.ts › pause › should pause after a navigation [unknown] +bidi-chromium-library › library/inspector/pause.spec.ts › pause › should show source [unknown] +bidi-chromium-library › library/inspector/pause.spec.ts › pause › should pause on next pause [unknown] +bidi-chromium-library › library/inspector/pause.spec.ts › pause › should step [unknown] +bidi-chromium-library › library/inspector/pause.spec.ts › pause › should step with keyboard shortcut [unknown] +bidi-chromium-library › library/inspector/pause.spec.ts › pause › should highlight pointer, only in main frame [unknown] +bidi-chromium-library › library/inspector/pause.spec.ts › pause › should skip input when resuming [unknown] +bidi-chromium-library › library/inspector/pause.spec.ts › pause › should populate log [unknown] +bidi-chromium-library › library/inspector/pause.spec.ts › pause › should hide internal calls [unknown] +bidi-chromium-library › library/inspector/pause.spec.ts › pause › should show expect.toHaveText [unknown] +bidi-chromium-library › library/inspector/pause.spec.ts › pause › should highlight waitForEvent [unknown] +bidi-chromium-library › library/inspector/pause.spec.ts › pause › should populate log with waitForEvent [unknown] +bidi-chromium-library › library/inspector/pause.spec.ts › pause › should populate log with error [unknown] +bidi-chromium-library › library/inspector/pause.spec.ts › pause › should populate log with error in waitForEvent [unknown] +bidi-chromium-library › library/inspector/pause.spec.ts › pause › should pause on page close [unknown] +bidi-chromium-library › library/inspector/pause.spec.ts › pause › should pause on context close [unknown] +bidi-chromium-library › library/inspector/pause.spec.ts › pause › should highlight on explore [unknown] +bidi-chromium-library › library/inspector/pause.spec.ts › pause › should highlight on explore (csharp) [unknown] +bidi-chromium-library › library/inspector/pause.spec.ts › pause › should not prevent key events [unknown] +bidi-chromium-library › library/inspector/pause.spec.ts › pause › should highlight locators with custom testId [unknown] +bidi-chromium-library › library/launcher.spec.ts › should have an errors object [unknown] +bidi-chromium-library › library/launcher.spec.ts › should have a devices object [unknown] +bidi-chromium-library › library/launcher.spec.ts › should kill browser process on timeout after close [unknown] +bidi-chromium-library › library/launcher.spec.ts › should throw a friendly error if its headed and there is no xserver on linux running [unknown] +bidi-chromium-library › library/locator-generator.spec.ts › reverse engineer locators [unknown] +bidi-chromium-library › library/locator-generator.spec.ts › reverse engineer getByRole [unknown] +bidi-chromium-library › library/locator-generator.spec.ts › reverse engineer ignore-case locators [unknown] +bidi-chromium-library › library/locator-generator.spec.ts › reverse engineer ordered locators [unknown] +bidi-chromium-library › library/locator-generator.spec.ts › reverse engineer locators with regex [unknown] +bidi-chromium-library › library/locator-generator.spec.ts › reverse engineer hasText [unknown] +bidi-chromium-library › library/locator-generator.spec.ts › reverse engineer hasNotText [unknown] +bidi-chromium-library › library/locator-generator.spec.ts › reverse engineer has [unknown] +bidi-chromium-library › library/locator-generator.spec.ts › reverse engineer hasNot [unknown] +bidi-chromium-library › library/locator-generator.spec.ts › reverse engineer has + hasText [unknown] +bidi-chromium-library › library/locator-generator.spec.ts › reverse engineer frameLocator [unknown] +bidi-chromium-library › library/locator-generator.spec.ts › generate multiple locators [unknown] +bidi-chromium-library › library/locator-generator.spec.ts › reverse engineer internal:has-text locators [unknown] +bidi-chromium-library › library/locator-generator.spec.ts › asLocator internal:and [unknown] +bidi-chromium-library › library/locator-generator.spec.ts › asLocator internal:or [unknown] +bidi-chromium-library › library/locator-generator.spec.ts › asLocator internal:chain [unknown] +bidi-chromium-library › library/locator-generator.spec.ts › asLocator xpath [unknown] +bidi-chromium-library › library/locator-generator.spec.ts › parseLocator quotes [unknown] +bidi-chromium-library › library/locator-generator.spec.ts › parseLocator css [unknown] +bidi-chromium-library › library/locator-generator.spec.ts › parse locators strictly [unknown] +bidi-chromium-library › library/logger.spec.ts › should log @smoke [unknown] +bidi-chromium-library › library/logger.spec.ts › should log context-level [unknown] +bidi-chromium-library › library/modernizr.spec.ts › Safari Desktop [unknown] +bidi-chromium-library › library/modernizr.spec.ts › Mobile Safari [unknown] +bidi-chromium-library › library/page-clock.frozen.spec.ts › clock should be frozen [unknown] +bidi-chromium-library › library/page-clock.frozen.spec.ts › clock should be realtime [unknown] +bidi-chromium-library › library/page-clock.spec.ts › runFor › triggers immediately without specified delay [unknown] +bidi-chromium-library › library/page-clock.spec.ts › runFor › does not trigger without sufficient delay [unknown] +bidi-chromium-library › library/page-clock.spec.ts › runFor › triggers after sufficient delay [unknown] +bidi-chromium-library › library/page-clock.spec.ts › runFor › triggers simultaneous timers [unknown] +bidi-chromium-library › library/page-clock.spec.ts › runFor › triggers multiple simultaneous timers [unknown] +bidi-chromium-library › library/page-clock.spec.ts › runFor › waits after setTimeout was called [unknown] +bidi-chromium-library › library/page-clock.spec.ts › runFor › triggers event when some throw [unknown] +bidi-chromium-library › library/page-clock.spec.ts › runFor › creates updated Date while ticking [unknown] +bidi-chromium-library › library/page-clock.spec.ts › runFor › passes 8 seconds [unknown] +bidi-chromium-library › library/page-clock.spec.ts › runFor › passes 1 minute [unknown] +bidi-chromium-library › library/page-clock.spec.ts › runFor › passes 2 hours, 34 minutes and 10 seconds [unknown] +bidi-chromium-library › library/page-clock.spec.ts › runFor › throws for invalid format [unknown] +bidi-chromium-library › library/page-clock.spec.ts › runFor › returns the current now value [unknown] +bidi-chromium-library › library/page-clock.spec.ts › fastForward › ignores timers which wouldn't be run [unknown] +bidi-chromium-library › library/page-clock.spec.ts › fastForward › pushes back execution time for skipped timers [unknown] +bidi-chromium-library › library/page-clock.spec.ts › fastForward › supports string time arguments [unknown] +bidi-chromium-library › library/page-clock.spec.ts › stubTimers › sets initial timestamp [unknown] +bidi-chromium-library › library/page-clock.spec.ts › stubTimers › should throw for invalid date [unknown] +bidi-chromium-library › library/page-clock.spec.ts › stubTimers › replaces global setTimeout [unknown] +bidi-chromium-library › library/page-clock.spec.ts › stubTimers › global fake setTimeout should return id [unknown] +bidi-chromium-library › library/page-clock.spec.ts › stubTimers › replaces global clearTimeout [unknown] +bidi-chromium-library › library/page-clock.spec.ts › stubTimers › replaces global setInterval [unknown] +bidi-chromium-library › library/page-clock.spec.ts › stubTimers › replaces global clearInterval [unknown] +bidi-chromium-library › library/page-clock.spec.ts › stubTimers › replaces global performance.now [unknown] +bidi-chromium-library › library/page-clock.spec.ts › stubTimers › fakes Date constructor [unknown] +bidi-chromium-library › library/page-clock.spec.ts › stubTimers › replaces global performance.timeOrigin [unknown] +bidi-chromium-library › library/page-clock.spec.ts › popup › should tick after popup [unknown] +bidi-chromium-library › library/page-clock.spec.ts › popup › should tick before popup [unknown] +bidi-chromium-library › library/page-clock.spec.ts › popup › should run time before popup [unknown] +bidi-chromium-library › library/page-clock.spec.ts › popup › should not run time before popup on pause [unknown] +bidi-chromium-library › library/page-clock.spec.ts › setFixedTime › does not fake methods [unknown] +bidi-chromium-library › library/page-clock.spec.ts › setFixedTime › allows setting time multiple times [unknown] +bidi-chromium-library › library/page-clock.spec.ts › setFixedTime › fixed time is not affected by clock manipulation [unknown] +bidi-chromium-library › library/page-clock.spec.ts › setFixedTime › allows installing fake timers after settings time [unknown] +bidi-chromium-library › library/page-clock.spec.ts › while running › should progress time [unknown] +bidi-chromium-library › library/page-clock.spec.ts › while running › should runFor [unknown] +bidi-chromium-library › library/page-clock.spec.ts › while running › should fastForward [unknown] +bidi-chromium-library › library/page-clock.spec.ts › while running › should fastForwardTo [unknown] +bidi-chromium-library › library/page-clock.spec.ts › while running › should pause [unknown] +bidi-chromium-library › library/page-clock.spec.ts › while running › should pause and fastForward [unknown] +bidi-chromium-library › library/page-clock.spec.ts › while running › should set system time on pause [unknown] +bidi-chromium-library › library/page-clock.spec.ts › while on pause › fastForward should not run nested immediate [unknown] +bidi-chromium-library › library/page-clock.spec.ts › while on pause › runFor should not run nested immediate [unknown] +bidi-chromium-library › library/page-clock.spec.ts › while on pause › runFor should not run nested immediate from microtask [unknown] +bidi-chromium-library › library/page-clock.spec.ts › Date.now › check Date.now is an integer [unknown] +bidi-chromium-library › library/page-clock.spec.ts › Date.now › check Date.now is an integer (2) [unknown] +bidi-chromium-library › library/page-event-crash.spec.ts › should emit crash event when page crashes [unknown] +bidi-chromium-library › library/page-event-crash.spec.ts › should throw on any action after page crashes [unknown] +bidi-chromium-library › library/page-event-crash.spec.ts › should cancel waitForEvent when page crashes [unknown] +bidi-chromium-library › library/page-event-crash.spec.ts › should cancel navigation when page crashes [unknown] +bidi-chromium-library › library/page-event-crash.spec.ts › should be able to close context when page crashes [unknown] +bidi-chromium-library › library/pdf.spec.ts › should be able to save file [unknown] +bidi-chromium-library › library/pdf.spec.ts › should be able to generate outline [unknown] +bidi-chromium-library › library/permissions.spec.ts › permissions › should be prompt by default [unknown] +bidi-chromium-library › library/permissions.spec.ts › permissions › should deny permission when not listed [unknown] +bidi-chromium-library › library/permissions.spec.ts › permissions › should fail when bad permission is given [unknown] +bidi-chromium-library › library/permissions.spec.ts › permissions › should grant geolocation permission when origin is listed [unknown] +bidi-chromium-library › library/permissions.spec.ts › permissions › should prompt for geolocation permission when origin is not listed [unknown] +bidi-chromium-library › library/permissions.spec.ts › permissions › should grant notifications permission when listed [unknown] +bidi-chromium-library › library/permissions.spec.ts › permissions › should accumulate when adding [unknown] +bidi-chromium-library › library/permissions.spec.ts › permissions › should clear permissions [unknown] +bidi-chromium-library › library/permissions.spec.ts › permissions › should grant permission when listed for all domains [unknown] +bidi-chromium-library › library/permissions.spec.ts › permissions › should grant permission when creating context [unknown] +bidi-chromium-library › library/permissions.spec.ts › permissions › should reset permissions [unknown] +bidi-chromium-library › library/permissions.spec.ts › permissions › should trigger permission onchange [unknown] +bidi-chromium-library › library/permissions.spec.ts › permissions › should isolate permissions between browser contexts [unknown] +bidi-chromium-library › library/permissions.spec.ts › should support clipboard read [unknown] +bidi-chromium-library › library/permissions.spec.ts › storage access [unknown] +bidi-chromium-library › library/popup.spec.ts › should inherit user agent from browser context @smoke [unknown] +bidi-chromium-library › library/popup.spec.ts › should respect routes from browser context [unknown] +bidi-chromium-library › library/popup.spec.ts › should inherit extra headers from browser context [unknown] +bidi-chromium-library › library/popup.spec.ts › should inherit offline from browser context [unknown] +bidi-chromium-library › library/popup.spec.ts › should inherit http credentials from browser context [unknown] +bidi-chromium-library › library/popup.spec.ts › should inherit touch support from browser context [unknown] +bidi-chromium-library › library/popup.spec.ts › should inherit viewport size from browser context [unknown] +bidi-chromium-library › library/popup.spec.ts › should use viewport size from window features [unknown] +bidi-chromium-library › library/popup.spec.ts › should respect routes from browser context when using window.open [unknown] +bidi-chromium-library › library/popup.spec.ts › BrowserContext.addInitScript should apply to an in-process popup [unknown] +bidi-chromium-library › library/popup.spec.ts › BrowserContext.addInitScript should apply to a cross-process popup [unknown] +bidi-chromium-library › library/popup.spec.ts › should expose function from browser context [unknown] +bidi-chromium-library › library/popup.spec.ts › should not dispatch binding on a closed page [unknown] +bidi-chromium-library › library/popup.spec.ts › should not throttle rAF in the opener page [unknown] +bidi-chromium-library › library/popup.spec.ts › should not throw when click closes popup [unknown] +bidi-chromium-library › library/proxy-pattern.spec.ts › socks proxy patter matcher [unknown] +bidi-chromium-library › library/proxy.spec.ts › should throw for bad server value [unknown] +bidi-chromium-library › library/proxy.spec.ts › should use proxy @smoke [unknown] +bidi-chromium-library › library/proxy.spec.ts › should use proxy for second page [unknown] +bidi-chromium-library › library/proxy.spec.ts › should work with IP:PORT notion [unknown] +bidi-chromium-library › library/proxy.spec.ts › should proxy local network requests › by default › localhost [unknown] +bidi-chromium-library › library/proxy.spec.ts › should proxy local network requests › by default › loopback address [unknown] +bidi-chromium-library › library/proxy.spec.ts › should proxy local network requests › by default › link-local [unknown] +bidi-chromium-library › library/proxy.spec.ts › should proxy local network requests › with other bypasses › localhost [unknown] +bidi-chromium-library › library/proxy.spec.ts › should proxy local network requests › with other bypasses › loopback address [unknown] +bidi-chromium-library › library/proxy.spec.ts › should proxy local network requests › with other bypasses › link-local [unknown] +bidi-chromium-library › library/proxy.spec.ts › should authenticate [unknown] +bidi-chromium-library › library/proxy.spec.ts › should work with authenticate followed by redirect [unknown] +bidi-chromium-library › library/proxy.spec.ts › should exclude patterns [unknown] +bidi-chromium-library › library/proxy.spec.ts › should use socks proxy [unknown] +bidi-chromium-library › library/proxy.spec.ts › should use socks proxy in second page [unknown] +bidi-chromium-library › library/proxy.spec.ts › does launch without a port [unknown] +bidi-chromium-library › library/proxy.spec.ts › should use proxy with emulated user agent [unknown] +bidi-chromium-library › library/proxy.spec.ts › should use SOCKS proxy for websocket requests [unknown] +bidi-chromium-library › library/resource-timing.spec.ts › should work @smoke [unknown] +bidi-chromium-library › library/resource-timing.spec.ts › should work for subresource [unknown] +bidi-chromium-library › library/resource-timing.spec.ts › should work for SSL [unknown] +bidi-chromium-library › library/resource-timing.spec.ts › should work for redirect [unknown] +bidi-chromium-library › library/resource-timing.spec.ts › should work when serving from memory cache [unknown] +bidi-chromium-library › library/role-utils.spec.ts › wpt accname #0 [unknown] +bidi-chromium-library › library/role-utils.spec.ts › wpt accname #1 [unknown] +bidi-chromium-library › library/role-utils.spec.ts › wpt accname #2 [unknown] +bidi-chromium-library › library/role-utils.spec.ts › wpt accname #3 [unknown] +bidi-chromium-library › library/role-utils.spec.ts › wpt accname non-manual [unknown] +bidi-chromium-library › library/role-utils.spec.ts › axe-core implicit-role [unknown] +bidi-chromium-library › library/role-utils.spec.ts › axe-core accessible-text [unknown] +bidi-chromium-library › library/role-utils.spec.ts › accessible name with slots [unknown] +bidi-chromium-library › library/role-utils.spec.ts › accessible name nested treeitem [unknown] +bidi-chromium-library › library/role-utils.spec.ts › svg title [unknown] +bidi-chromium-library › library/role-utils.spec.ts › native controls [unknown] +bidi-chromium-library › library/role-utils.spec.ts › native controls labelled-by [unknown] +bidi-chromium-library › library/role-utils.spec.ts › display:contents should be visible when contents are visible [unknown] +bidi-chromium-library › library/role-utils.spec.ts › label/labelled-by aria-hidden with descendants [unknown] +bidi-chromium-library › library/role-utils.spec.ts › own aria-label concatenated with aria-labelledby [unknown] +bidi-chromium-library › library/role-utils.spec.ts › control embedded in a label [unknown] +bidi-chromium-library › library/role-utils.spec.ts › control embedded in a target element [unknown] +bidi-chromium-library › library/role-utils.spec.ts › svg role=presentation [unknown] +bidi-chromium-library › library/role-utils.spec.ts › should work with form and tricky input names [unknown] +bidi-chromium-library › library/role-utils.spec.ts › should ignore stylesheet from hidden aria-labelledby subtree [unknown] +bidi-chromium-library › library/role-utils.spec.ts › should not include hidden pseudo into accessible name [unknown] +bidi-chromium-library › library/screenshot.spec.ts › page screenshot › should run in parallel in multiple pages [unknown] +bidi-chromium-library › library/screenshot.spec.ts › page screenshot › should work with a mobile viewport [unknown] +bidi-chromium-library › library/screenshot.spec.ts › page screenshot › should work with a mobile viewport and clip [unknown] +bidi-chromium-library › library/screenshot.spec.ts › page screenshot › should work with a mobile viewport and fullPage [unknown] +bidi-chromium-library › library/screenshot.spec.ts › page screenshot › should work with device scale factor [unknown] +bidi-chromium-library › library/screenshot.spec.ts › page screenshot › should work with device scale factor and clip [unknown] +bidi-chromium-library › library/screenshot.spec.ts › page screenshot › should work with device scale factor and scale:css [unknown] +bidi-chromium-library › library/screenshot.spec.ts › page screenshot › should work with device scale factor, clip and scale:css [unknown] +bidi-chromium-library › library/screenshot.spec.ts › page screenshot › should throw if screenshot size is too large with device scale factor [unknown] +bidi-chromium-library › library/screenshot.spec.ts › page screenshot › should work with large size [unknown] +bidi-chromium-library › library/screenshot.spec.ts › page screenshot › should handle vh units [unknown] +bidi-chromium-library › library/screenshot.spec.ts › element screenshot › element screenshot should work with a mobile viewport [unknown] +bidi-chromium-library › library/screenshot.spec.ts › element screenshot › element screenshot should work with device scale factor [unknown] +bidi-chromium-library › library/screenshot.spec.ts › element screenshot › should take screenshots when default viewport is null [unknown] +bidi-chromium-library › library/screenshot.spec.ts › element screenshot › should take fullPage screenshots when default viewport is null [unknown] +bidi-chromium-library › library/screenshot.spec.ts › element screenshot › should restore default viewport after fullPage screenshot [unknown] +bidi-chromium-library › library/screenshot.spec.ts › element screenshot › should restore viewport after page screenshot and exception [unknown] +bidi-chromium-library › library/screenshot.spec.ts › element screenshot › should restore viewport after page screenshot and timeout [unknown] +bidi-chromium-library › library/screenshot.spec.ts › element screenshot › should take element screenshot when default viewport is null and restore back [unknown] +bidi-chromium-library › library/screenshot.spec.ts › element screenshot › should restore viewport after element screenshot and exception [unknown] +bidi-chromium-library › library/screenshot.spec.ts › element screenshot › element screenshots should handle vh units [unknown] +bidi-chromium-library › library/screenshot.spec.ts › element screenshot › should work if the main resource hangs [unknown] +bidi-chromium-library › library/screenshot.spec.ts › element screenshot › should capture full element when larger than viewport with device scale factor [unknown] +bidi-chromium-library › library/screenshot.spec.ts › element screenshot › should capture full element when larger than viewport with device scale factor and scale:css [unknown] +bidi-chromium-library › library/screenshot.spec.ts › element screenshot › page screenshot should capture css transform with device pixels [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should prefer button over inner span [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should prefer role=button over inner span [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should not prefer zero-sized button over inner span [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should generate text and normalize whitespace [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should not escape spaces inside named attr selectors [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should generate text for [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should trim text [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should try to improve role name [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should try to improve text [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should try to improve text by shortening [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should try to improve label text by shortening [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should not improve guid text [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should not escape text with >> [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should escape text with quote [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should escape text with slash [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should not use text for select [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should use ordinal for identical nodes [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should prefer data-testid [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should use data-testid in strict errors [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should handle first non-unique data-testid [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should handle second non-unique data-testid [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should use readable id [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should not use generated id [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should use internal:has-text [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should use internal:has-text with regexp [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should use internal:has-text with regexp with a quote [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should chain text after parent [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should use parent text [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should separate selectors by >> [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should trim long text [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should use nested ordinals [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should properly join child selectors under nested ordinals [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should not use input[value] [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should prioritise attributes correctly › role [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should prioritise attributes correctly › placeholder [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should prioritise attributes correctly › name [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should prioritise attributes correctly › type [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should find text in shadow dom [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should match in shadow dom [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should match in deep shadow dom [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should work in dynamic iframes without navigation [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should use the name attributes for elements that can have it [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should work with tricky attributes [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should work without CSS.escape [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should ignore empty aria-label for candidate consideration [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should accept valid aria-label for candidate consideration [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should ignore empty role for candidate consideration [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should not accept invalid role for candidate consideration [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should ignore empty data-test-id for candidate consideration [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should accept valid data-test-id for candidate consideration [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should generate label selector [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should prefer role other input[type] [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should generate title selector [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should generate exact text when necessary [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should generate exact title when necessary [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should generate exact placeholder when necessary [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should generate exact role when necessary [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should generate exact label when necessary [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should generate relative selector [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should generate multiple: noText in role [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should generate multiple: noText in text [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should generate multiple: noId [unknown] +bidi-chromium-library › library/selector-generator.spec.ts › selector generator › should generate multiple: noId noText [unknown] +bidi-chromium-library › library/selectors-register.spec.ts › should work [unknown] +bidi-chromium-library › library/selectors-register.spec.ts › should work when registered on global [unknown] +bidi-chromium-library › library/selectors-register.spec.ts › should work with path [unknown] +bidi-chromium-library › library/selectors-register.spec.ts › should work in main and isolated world [unknown] +bidi-chromium-library › library/selectors-register.spec.ts › should handle errors [unknown] +bidi-chromium-library › library/selectors-register.spec.ts › should not rely on engines working from the root [unknown] +bidi-chromium-library › library/selectors-register.spec.ts › should throw a nice error if the selector returns a bad value [unknown] +bidi-chromium-library › library/shared-worker.spec.ts › should survive shared worker restart [unknown] +bidi-chromium-library › library/signals.spec.ts › should close the browser when the node process closes [unknown] +bidi-chromium-library › library/signals.spec.ts › should remove temp dir on process.exit [unknown] +bidi-chromium-library › library/signals.spec.ts › signals › should report browser close signal 2 [unknown] +bidi-chromium-library › library/signals.spec.ts › signals › should close the browser on SIGINT [unknown] +bidi-chromium-library › library/signals.spec.ts › signals › should close the browser on SIGTERM [unknown] +bidi-chromium-library › library/signals.spec.ts › signals › should close the browser on SIGHUP [unknown] +bidi-chromium-library › library/signals.spec.ts › signals › should kill the browser on double SIGINT and remove temp dir [unknown] +bidi-chromium-library › library/signals.spec.ts › signals › should kill the browser on SIGINT + SIGTERM [unknown] +bidi-chromium-library › library/signals.spec.ts › signals › should kill the browser on SIGTERM + SIGINT [unknown] +bidi-chromium-library › library/signals.spec.ts › signals › should not prevent default SIGTERM handling after browser close [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › Page SlowMo check [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › Page SlowMo click [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › Page SlowMo dblclick [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › Page SlowMo dispatchEvent [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › Page SlowMo fill [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › Page SlowMo focus [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › Page SlowMo goto [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › Page SlowMo hover [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › Page SlowMo press [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › Page SlowMo reload [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › Page SlowMo selectOption [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › Page SlowMo setInputFiles [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › Page SlowMo type [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › Page SlowMo uncheck [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › Frame SlowMo check [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › Frame SlowMo click [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › Frame SlowMo dblclick [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › Frame SlowMo dispatchEvent [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › Frame SlowMo fill [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › Frame SlowMo focus [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › Frame SlowMo goto [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › Frame SlowMo hover [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › Frame SlowMo press [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › Frame SlowMo selectOption [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › Frame SlowMo setInputFiles [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › Frame SlowMo type [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › Frame SlowMo uncheck [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › ElementHandle SlowMo check [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › ElementHandle SlowMo click [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › ElementHandle SlowMo dblclick [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › ElementHandle SlowMo dispatchEvent [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › ElementHandle SlowMo fill [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › ElementHandle SlowMo focus [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › ElementHandle SlowMo hover [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › ElementHandle SlowMo press [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › ElementHandle SlowMo selectOption [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › ElementHandle SlowMo setInputFiles [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › ElementHandle SlowMo type [unknown] +bidi-chromium-library › library/slowmo.spec.ts › slowMo › ElementHandle SlowMo uncheck [unknown] +bidi-chromium-library › library/snapshotter.spec.ts › snapshots › should collect snapshot [unknown] +bidi-chromium-library › library/snapshotter.spec.ts › snapshots › should preserve BASE and other content on reset [unknown] +bidi-chromium-library › library/snapshotter.spec.ts › snapshots › should capture resources [unknown] +bidi-chromium-library › library/snapshotter.spec.ts › snapshots › should collect multiple [unknown] +bidi-chromium-library › library/snapshotter.spec.ts › snapshots › should respect inline CSSOM change [unknown] +bidi-chromium-library › library/snapshotter.spec.ts › snapshots › should respect CSSOM change through CSSGroupingRule [unknown] +bidi-chromium-library › library/snapshotter.spec.ts › snapshots › should respect node removal [unknown] +bidi-chromium-library › library/snapshotter.spec.ts › snapshots › should respect attr removal [unknown] +bidi-chromium-library › library/snapshotter.spec.ts › snapshots › should have a custom doctype [unknown] +bidi-chromium-library › library/snapshotter.spec.ts › snapshots › should replace meta charset attr that specifies charset [unknown] +bidi-chromium-library › library/snapshotter.spec.ts › snapshots › should replace meta content attr that specifies charset [unknown] +bidi-chromium-library › library/snapshotter.spec.ts › snapshots › should respect subresource CSSOM change [unknown] +bidi-chromium-library › library/snapshotter.spec.ts › snapshots › should capture frame [unknown] +bidi-chromium-library › library/snapshotter.spec.ts › snapshots › should capture iframe [unknown] +bidi-chromium-library › library/snapshotter.spec.ts › snapshots › should capture iframe with srcdoc [unknown] +bidi-chromium-library › library/snapshotter.spec.ts › snapshots › should capture snapshot target [unknown] +bidi-chromium-library › library/snapshotter.spec.ts › snapshots › should collect on attribute change [unknown] +bidi-chromium-library › library/snapshotter.spec.ts › snapshots › empty adopted style sheets should not prevent node refs [unknown] +bidi-chromium-library › library/snapshotter.spec.ts › snapshots › should not navigate on anchor clicks [unknown] +bidi-chromium-library › library/tap.spec.ts › should send all of the correct events @smoke [unknown] +bidi-chromium-library › library/tap.spec.ts › trial run should not tap [unknown] +bidi-chromium-library › library/tap.spec.ts › should not send mouse events touchstart is canceled [unknown] +bidi-chromium-library › library/tap.spec.ts › should not send mouse events when touchend is canceled [unknown] +bidi-chromium-library › library/tap.spec.ts › should not wait for a navigation caused by a tap [unknown] +bidi-chromium-library › library/tap.spec.ts › should work with modifiers [unknown] +bidi-chromium-library › library/tap.spec.ts › should send well formed touch points [unknown] +bidi-chromium-library › library/tap.spec.ts › should wait until an element is visible to tap it [unknown] +bidi-chromium-library › library/tap.spec.ts › locators › should send all of the correct events [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should show empty trace viewer [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should open two trace viewers [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should open trace viewer on specific host [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should open simple trace viewer [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should complain about newer version of trace in old viewer [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should contain action info [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should render network bars [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should render console [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should open console errors on click [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should show params and return value [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should show null as a param [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should have correct snapshot size [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should have correct stack trace [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should have network requests [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should filter network requests by resource type [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should show font preview [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should filter network requests by url [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should have network request overrides [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should have network request overrides 2 [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should show snapshot URL [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should popup snapshot [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should capture iframe with sandbox attribute [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should capture data-url svg iframe [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should contain adopted style sheets [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should work with adopted style sheets and replace/replaceSync [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should work with adopted style sheets and all: unset [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should work with nesting CSS selectors [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should restore scroll positions [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should restore control values [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should work with meta CSP [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should handle multiple headers [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should handle src=blob [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should handle file URIs [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should preserve currentSrc [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should register custom elements [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should highlight target elements [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should highlight target element in shadow dom [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should highlight expect failure [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should show action source [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should follow redirects [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should include metainfo [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should open two trace files [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should open two trace files of the same test [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should include requestUrl in route.fulfill [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should not crash with broken locator [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should include requestUrl in route.continue [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should include requestUrl in route.abort [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should serve overridden request [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should display waitForLoadState even if did not wait for it [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should display language-specific locators [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should pick locator [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should update highlight when typing [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should open trace-1.31 [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should open trace-1.37 [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should prefer later resource request with the same method [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should ignore 304 responses [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should pick locator in iframe [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should highlight locator in iframe while typing [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should preserve noscript when javascript is disabled [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should remove noscript by default [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should remove noscript when javaScriptEnabled is set to true [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should open snapshot in new browser context [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should show similar actions from library-only trace [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should show correct request start time [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should allow hiding route actions [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should show baseURL in metadata pane [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should serve css without content-type [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should allow showing screenshots instead of snapshots [unknown] +bidi-chromium-library › library/trace-viewer.spec.ts › should handle case where neither snapshots nor screenshots exist [unknown] +bidi-chromium-library › library/tracing.spec.ts › should collect trace with resources, but no js [unknown] +bidi-chromium-library › library/tracing.spec.ts › should use the correct apiName for event driven callbacks [unknown] +bidi-chromium-library › library/tracing.spec.ts › should not collect snapshots by default [unknown] +bidi-chromium-library › library/tracing.spec.ts › should not include buffers in the trace [unknown] +bidi-chromium-library › library/tracing.spec.ts › should exclude internal pages [unknown] +bidi-chromium-library › library/tracing.spec.ts › should include context API requests [unknown] +bidi-chromium-library › library/tracing.spec.ts › should collect two traces [unknown] +bidi-chromium-library › library/tracing.spec.ts › should respect tracesDir and name [unknown] +bidi-chromium-library › library/tracing.spec.ts › should not include trace resources from the previous chunks [unknown] +bidi-chromium-library › library/tracing.spec.ts › should overwrite existing file [unknown] +bidi-chromium-library › library/tracing.spec.ts › should collect sources [unknown] +bidi-chromium-library › library/tracing.spec.ts › should record network failures [unknown] +bidi-chromium-library › library/tracing.spec.ts › should not crash when browser closes mid-trace [unknown] +bidi-chromium-library › library/tracing.spec.ts › should survive browser.close with auto-created traces dir [unknown] +bidi-chromium-library › library/tracing.spec.ts › should not stall on dialogs [unknown] +bidi-chromium-library › library/tracing.spec.ts › should produce screencast frames fit [unknown] +bidi-chromium-library › library/tracing.spec.ts › should produce screencast frames crop [unknown] +bidi-chromium-library › library/tracing.spec.ts › should produce screencast frames scale [unknown] +bidi-chromium-library › library/tracing.spec.ts › should include interrupted actions [unknown] +bidi-chromium-library › library/tracing.spec.ts › should throw when starting with different options [unknown] +bidi-chromium-library › library/tracing.spec.ts › should throw when stopping without start [unknown] +bidi-chromium-library › library/tracing.spec.ts › should not throw when stopping without start but not exporting [unknown] +bidi-chromium-library › library/tracing.spec.ts › should work with multiple chunks [unknown] +bidi-chromium-library › library/tracing.spec.ts › should export trace concurrently to second navigation [unknown] +bidi-chromium-library › library/tracing.spec.ts › should not hang for clicks that open dialogs [unknown] +bidi-chromium-library › library/tracing.spec.ts › should ignore iframes in head [unknown] +bidi-chromium-library › library/tracing.spec.ts › should hide internal stack frames [unknown] +bidi-chromium-library › library/tracing.spec.ts › should hide internal stack frames in expect [unknown] +bidi-chromium-library › library/tracing.spec.ts › should record global request trace [unknown] +bidi-chromium-library › library/tracing.spec.ts › should store global request traces separately [unknown] +bidi-chromium-library › library/tracing.spec.ts › should store postData for global request [unknown] +bidi-chromium-library › library/tracing.spec.ts › should not flush console events [unknown] +bidi-chromium-library › library/tracing.spec.ts › should flush console events on tracing stop [unknown] +bidi-chromium-library › library/tracing.spec.ts › should not emit after w/o before [unknown] +bidi-chromium-library › library/unroute-behavior.spec.ts › context.unroute should not wait for pending handlers to complete [unknown] +bidi-chromium-library › library/unroute-behavior.spec.ts › context.unrouteAll removes all handlers [unknown] +bidi-chromium-library › library/unroute-behavior.spec.ts › context.unrouteAll should wait for pending handlers to complete [unknown] +bidi-chromium-library › library/unroute-behavior.spec.ts › context.unrouteAll should not wait for pending handlers to complete if behavior is ignoreErrors [unknown] +bidi-chromium-library › library/unroute-behavior.spec.ts › page.close should not wait for active route handlers on the owning context [unknown] +bidi-chromium-library › library/unroute-behavior.spec.ts › context.close should not wait for active route handlers on the owned pages [unknown] +bidi-chromium-library › library/unroute-behavior.spec.ts › page.unroute should not wait for pending handlers to complete [unknown] +bidi-chromium-library › library/unroute-behavior.spec.ts › page.unrouteAll removes all routes [unknown] +bidi-chromium-library › library/unroute-behavior.spec.ts › page.unrouteAll should wait for pending handlers to complete [unknown] +bidi-chromium-library › library/unroute-behavior.spec.ts › page.unrouteAll should not wait for pending handlers to complete if behavior is ignoreErrors [unknown] +bidi-chromium-library › library/unroute-behavior.spec.ts › page.close does not wait for active route handlers [unknown] +bidi-chromium-library › library/unroute-behavior.spec.ts › route.continue should not throw if page has been closed [unknown] +bidi-chromium-library › library/unroute-behavior.spec.ts › route.fallback should not throw if page has been closed [unknown] +bidi-chromium-library › library/unroute-behavior.spec.ts › route.fulfill should not throw if page has been closed [unknown] +bidi-chromium-library › library/video.spec.ts › screencast › videoSize should require videosPath [unknown] +bidi-chromium-library › library/video.spec.ts › screencast › should work with old options [unknown] +bidi-chromium-library › library/video.spec.ts › screencast › should throw without recordVideo.dir [unknown] +bidi-chromium-library › library/video.spec.ts › screencast › should capture static page [unknown] +bidi-chromium-library › library/video.spec.ts › screencast › should continue recording main page after popup closes [unknown] +bidi-chromium-library › library/video.spec.ts › screencast › should expose video path [unknown] +bidi-chromium-library › library/video.spec.ts › screencast › saveAs should throw when no video frames [unknown] +bidi-chromium-library › library/video.spec.ts › screencast › should delete video [unknown] +bidi-chromium-library › library/video.spec.ts › screencast › should expose video path blank page [unknown] +bidi-chromium-library › library/video.spec.ts › screencast › should work with weird screen resolution [unknown] +bidi-chromium-library › library/video.spec.ts › screencast › should work with relative path for recordVideo.dir [unknown] +bidi-chromium-library › library/video.spec.ts › screencast › should expose video path blank popup [unknown] +bidi-chromium-library › library/video.spec.ts › screencast › should capture navigation [unknown] +bidi-chromium-library › library/video.spec.ts › screencast › should capture css transformation [unknown] +bidi-chromium-library › library/video.spec.ts › screencast › should work for popups [unknown] +bidi-chromium-library › library/video.spec.ts › screencast › should scale frames down to the requested size [unknown] +bidi-chromium-library › library/video.spec.ts › screencast › should use viewport scaled down to fit into 800x800 as default size [unknown] +bidi-chromium-library › library/video.spec.ts › screencast › should be 800x450 by default [unknown] +bidi-chromium-library › library/video.spec.ts › screencast › should be 800x600 with null viewport [unknown] +bidi-chromium-library › library/video.spec.ts › screencast › should capture static page in persistent context @smoke [unknown] +bidi-chromium-library › library/video.spec.ts › screencast › should emulate an iphone [unknown] +bidi-chromium-library › library/video.spec.ts › screencast › should throw on browser close [unknown] +bidi-chromium-library › library/video.spec.ts › screencast › should throw if browser dies [unknown] +bidi-chromium-library › library/video.spec.ts › screencast › should wait for video to finish if page was closed [unknown] +bidi-chromium-library › library/video.spec.ts › screencast › should not create video for internal pages [unknown] +bidi-chromium-library › library/video.spec.ts › screencast › should capture full viewport [unknown] +bidi-chromium-library › library/video.spec.ts › screencast › should capture full viewport on hidpi [unknown] +bidi-chromium-library › library/video.spec.ts › screencast › should work with video+trace [unknown] +bidi-chromium-library › library/video.spec.ts › should saveAs video [unknown] +bidi-chromium-library › library/web-socket.spec.ts › should work @smoke [unknown] +bidi-chromium-library › library/web-socket.spec.ts › should emit close events [unknown] +bidi-chromium-library › library/web-socket.spec.ts › should emit frame events [unknown] +bidi-chromium-library › library/web-socket.spec.ts › should filter out the close events when the server closes with a message [unknown] +bidi-chromium-library › library/web-socket.spec.ts › should pass self as argument to close event [unknown] +bidi-chromium-library › library/web-socket.spec.ts › should emit binary frame events [unknown] +bidi-chromium-library › library/web-socket.spec.ts › should emit error [unknown] +bidi-chromium-library › library/web-socket.spec.ts › should not have stray error events [unknown] +bidi-chromium-library › library/web-socket.spec.ts › should reject waitForEvent on socket close [unknown] +bidi-chromium-library › library/web-socket.spec.ts › should reject waitForEvent on page close [unknown] +bidi-chromium-library › library/web-socket.spec.ts › should turn off when offline [unknown] \ No newline at end of file diff --git a/tests/bidi/expectations/bidi-chromium-page.txt b/tests/bidi/expectations/bidi-chromium-page.txt new file mode 100644 index 0000000000..dcde5cbe98 --- /dev/null +++ b/tests/bidi/expectations/bidi-chromium-page.txt @@ -0,0 +1,1966 @@ +bidi-chromium-page › page/elementhandle-bounding-box.spec.ts › should work [unknown] +bidi-chromium-page › page/elementhandle-bounding-box.spec.ts › should handle nested frames [unknown] +bidi-chromium-page › page/elementhandle-bounding-box.spec.ts › should get frame box [unknown] +bidi-chromium-page › page/elementhandle-bounding-box.spec.ts › should handle scroll offset and click [unknown] +bidi-chromium-page › page/elementhandle-bounding-box.spec.ts › should return null for invisible elements [unknown] +bidi-chromium-page › page/elementhandle-bounding-box.spec.ts › should force a layout [unknown] +bidi-chromium-page › page/elementhandle-bounding-box.spec.ts › should work with SVG nodes [unknown] +bidi-chromium-page › page/elementhandle-bounding-box.spec.ts › should work when inline box child is outside of viewport [unknown] +bidi-chromium-page › page/elementhandle-click.spec.ts › should work @smoke [unknown] +bidi-chromium-page › page/elementhandle-click.spec.ts › should work with Node removed [unknown] +bidi-chromium-page › page/elementhandle-click.spec.ts › should work for Shadow DOM v1 [unknown] +bidi-chromium-page › page/elementhandle-click.spec.ts › should work for TextNodes [unknown] +bidi-chromium-page › page/elementhandle-click.spec.ts › should throw for detached nodes [unknown] +bidi-chromium-page › page/elementhandle-click.spec.ts › should throw for hidden nodes with force [unknown] +bidi-chromium-page › page/elementhandle-click.spec.ts › should throw for recursively hidden nodes with force [unknown] +bidi-chromium-page › page/elementhandle-click.spec.ts › should throw for
elements with force [unknown] +bidi-chromium-page › page/elementhandle-click.spec.ts › should double click the button [unknown] +bidi-chromium-page › page/elementhandle-content-frame.spec.ts › should work [unknown] +bidi-chromium-page › page/elementhandle-content-frame.spec.ts › should work for cross-process iframes [unknown] +bidi-chromium-page › page/elementhandle-content-frame.spec.ts › should work for cross-frame evaluations [unknown] +bidi-chromium-page › page/elementhandle-content-frame.spec.ts › should return null for non-iframes [unknown] +bidi-chromium-page › page/elementhandle-content-frame.spec.ts › should return null for document.documentElement [unknown] +bidi-chromium-page › page/elementhandle-convenience.spec.ts › should have a nice preview [unknown] +bidi-chromium-page › page/elementhandle-convenience.spec.ts › should have a nice preview for non-ascii attributes/children [unknown] +bidi-chromium-page › page/elementhandle-convenience.spec.ts › getAttribute should work [unknown] +bidi-chromium-page › page/elementhandle-convenience.spec.ts › inputValue should work [unknown] +bidi-chromium-page › page/elementhandle-convenience.spec.ts › innerHTML should work [unknown] +bidi-chromium-page › page/elementhandle-convenience.spec.ts › innerText should work [unknown] +bidi-chromium-page › page/elementhandle-convenience.spec.ts › innerText should throw [unknown] +bidi-chromium-page › page/elementhandle-convenience.spec.ts › textContent should work [unknown] +bidi-chromium-page › page/elementhandle-convenience.spec.ts › textContent should work on ShadowRoot [unknown] +bidi-chromium-page › page/elementhandle-convenience.spec.ts › isVisible and isHidden should work [unknown] +bidi-chromium-page › page/elementhandle-convenience.spec.ts › isVisible should not throw when the DOM element is not connected [unknown] +bidi-chromium-page › page/elementhandle-convenience.spec.ts › isEnabled and isDisabled should work [unknown] +bidi-chromium-page › page/elementhandle-convenience.spec.ts › isEnabled and isDisabled should work with [unknown] +bidi-chromium-page › page/page-fill.spec.ts › should throw if passed a non-string value [unknown] +bidi-chromium-page › page/page-fill.spec.ts › should retry on disabled element [unknown] +bidi-chromium-page › page/page-fill.spec.ts › should retry on readonly element [unknown] +bidi-chromium-page › page/page-fill.spec.ts › should retry on invisible element [unknown] +bidi-chromium-page › page/page-fill.spec.ts › should be able to fill the body [unknown] +bidi-chromium-page › page/page-fill.spec.ts › should fill fixed position input [unknown] +bidi-chromium-page › page/page-fill.spec.ts › should be able to fill when focus is in the wrong frame [unknown] +bidi-chromium-page › page/page-fill.spec.ts › should be able to fill the input[type=number] [unknown] +bidi-chromium-page › page/page-fill.spec.ts › should be able to fill exponent into the input[type=number] [unknown] +bidi-chromium-page › page/page-fill.spec.ts › should be able to fill input[type=number] with empty string [unknown] +bidi-chromium-page › page/page-fill.spec.ts › should not be able to fill text into the input[type=number] [unknown] +bidi-chromium-page › page/page-fill.spec.ts › should be able to clear using fill() [unknown] +bidi-chromium-page › page/page-fill.spec.ts › should not throw when fill causes navigation [unknown] +bidi-chromium-page › page/page-fill.spec.ts › fill back to back [unknown] +bidi-chromium-page › page/page-focus.spec.ts › should work @smoke [unknown] +bidi-chromium-page › page/page-focus.spec.ts › should emit focus event [unknown] +bidi-chromium-page › page/page-focus.spec.ts › should emit blur event [unknown] +bidi-chromium-page › page/page-focus.spec.ts › should traverse focus [unknown] +bidi-chromium-page › page/page-focus.spec.ts › should traverse focus in all directions [unknown] +bidi-chromium-page › page/page-focus.spec.ts › should traverse only form elements [unknown] +bidi-chromium-page › page/page-focus.spec.ts › clicking checkbox should activate it [unknown] +bidi-chromium-page › page/page-focus.spec.ts › keeps focus on element when attempting to focus a non-focusable element [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should work @smoke [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should work with file URL [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should work with file URL with subframes [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should use http for no protocol [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should work cross-process [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should work with cross-process that fails before committing [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should work with Cross-Origin-Opener-Policy [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should work with Cross-Origin-Opener-Policy and interception [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should work with Cross-Origin-Opener-Policy after redirect [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should capture iframe navigation request [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should capture cross-process iframe navigation request [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should work with anchor navigation [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should work with redirects [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should navigate to about:blank [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should return response when page changes its URL after load [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should work with subframes return 204 [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should work with subframes return 204 with domcontentloaded [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should fail when server returns 204 [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should navigate to empty page with domcontentloaded [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should work when page calls history API in beforeunload [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should fail when navigating to bad url [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should fail when navigating to bad SSL [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should fail when navigating to bad SSL after redirects [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should not crash when navigating to bad SSL after a cross origin navigation [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should not throw if networkidle0 is passed as an option [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should throw if networkidle2 is passed as an option [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should fail when main resources failed to load [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should fail when exceeding maximum navigation timeout [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should fail when exceeding default maximum navigation timeout [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should fail when exceeding browser context navigation timeout [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should fail when exceeding default maximum timeout [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should fail when exceeding browser context timeout [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should prioritize default navigation timeout over default timeout [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should disable timeout when its set to 0 [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should fail when replaced by another navigation [unknown] +bidi-chromium-page › page/page-goto.spec.ts › js redirect overrides url bar navigation [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should succeed on url bar navigation when there is pending navigation [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should work when navigating to valid url [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should work when navigating to data url [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should work when navigating to 404 [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should return last response in redirect chain [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should not leak listeners during navigation [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should not leak listeners during bad navigation [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should not leak listeners during 20 waitForNavigation [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should navigate to dataURL and not fire dataURL requests [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should navigate to URL with hash and fire requests without hash [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should work with self requesting page [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should fail when navigating and show the url at the error message [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should be able to navigate to a page controlled by service worker [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should send referer [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should send referer of cross-origin URL [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should reject referer option when setExtraHTTPHeaders provides referer [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should override referrer-policy [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should fail when canceled by another navigation [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should work with lazy loading iframes [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should report raw buffer for main resource [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should not throw unhandled rejections on invalid url [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should not crash when RTCPeerConnection is used [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should properly wait for load [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should not resolve goto upon window.stop() [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should return from goto if new navigation is started [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should return when navigation is committed if commit is specified [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should wait for load when iframe attaches and detaches [unknown] +bidi-chromium-page › page/page-goto.spec.ts › should return url with basic auth info [unknown] +bidi-chromium-page › page/page-history.spec.ts › page.goBack should work @smoke [unknown] +bidi-chromium-page › page/page-history.spec.ts › page.goBack should work with HistoryAPI [unknown] +bidi-chromium-page › page/page-history.spec.ts › page.goBack should work for file urls [unknown] +bidi-chromium-page › page/page-history.spec.ts › goBack/goForward should work with bfcache-able pages [unknown] +bidi-chromium-page › page/page-history.spec.ts › page.reload should work [unknown] +bidi-chromium-page › page/page-history.spec.ts › page.reload should work with data url [unknown] +bidi-chromium-page › page/page-history.spec.ts › page.reload during renderer-initiated navigation [unknown] +bidi-chromium-page › page/page-history.spec.ts › page.reload should not resolve with same-document navigation [unknown] +bidi-chromium-page › page/page-history.spec.ts › page.reload should work with same origin redirect [unknown] +bidi-chromium-page › page/page-history.spec.ts › page.reload should work with cross-origin redirect [unknown] +bidi-chromium-page › page/page-history.spec.ts › page.reload should work on a page with a hash [unknown] +bidi-chromium-page › page/page-history.spec.ts › page.reload should work on a page with a hash at the end [unknown] +bidi-chromium-page › page/page-history.spec.ts › page.goBack during renderer-initiated navigation [unknown] +bidi-chromium-page › page/page-history.spec.ts › page.goForward during renderer-initiated navigation [unknown] +bidi-chromium-page › page/page-history.spec.ts › regression test for issue 20791 [unknown] +bidi-chromium-page › page/page-history.spec.ts › should reload proper page [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should type into a textarea @smoke [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should move with the arrow keys [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should send a character with ElementHandle.press [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should send a character with insertText [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › insertText should only emit input event [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should report shiftKey [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should report multiple modifiers [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should send proper codes while typing [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should send proper codes while typing with shift [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should not type canceled events [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should press plus [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should press shift plus [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should support plus-separated modifiers [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should support multiple plus-separated modifiers [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should shift raw codes [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should specify repeat property [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should type all kinds of characters [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should specify location [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should press Enter [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should throw on unknown keys [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should type emoji [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should type emoji into an iframe [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should handle selectAll [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › pressing Meta should not result in any text insertion on any platform [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should be able to prevent selectAll [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should support MacOS shortcuts [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should press the meta key [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should work with keyboard events with empty.html [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should work after a cross origin navigation [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should expose keyIdentifier in webkit [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should scroll with PageDown [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should move around the selection in a contenteditable [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should move to the start of the document [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should dispatch a click event on a button when Space gets pressed [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should dispatch a click event on a button when Enter gets pressed [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should support simple copy-pasting [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should support simple cut-pasting [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should support undo-redo [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should type repeatedly in contenteditable in shadow dom [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should type repeatedly in contenteditable in shadow dom with nested elements [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should type repeatedly in input in shadow dom [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › type to non-focusable element should maintain old focus [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should dispatch insertText after context menu was opened [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should type after context menu was opened [unknown] +bidi-chromium-page › page/page-keyboard.spec.ts › should have correct Keydown/Keyup order when pressing Escape key [unknown] +bidi-chromium-page › page/page-leaks.spec.ts › click should not leak [unknown] +bidi-chromium-page › page/page-leaks.spec.ts › fill should not leak [unknown] +bidi-chromium-page › page/page-leaks.spec.ts › expect should not leak [unknown] +bidi-chromium-page › page/page-leaks.spec.ts › waitFor should not leak [unknown] +bidi-chromium-page › page/page-listeners.spec.ts › should not throw with ignoreErrors [unknown] +bidi-chromium-page › page/page-listeners.spec.ts › should wait [unknown] +bidi-chromium-page › page/page-listeners.spec.ts › wait should throw [unknown] +bidi-chromium-page › page/page-mouse.spec.ts › should click the document @smoke [unknown] +bidi-chromium-page › page/page-mouse.spec.ts › should dblclick the div [unknown] +bidi-chromium-page › page/page-mouse.spec.ts › down and up should generate click [unknown] +bidi-chromium-page › page/page-mouse.spec.ts › should pointerdown the div with a custom button [unknown] +bidi-chromium-page › page/page-mouse.spec.ts › should report correct buttons property [unknown] +bidi-chromium-page › page/page-mouse.spec.ts › should select the text with mouse [unknown] +bidi-chromium-page › page/page-mouse.spec.ts › should trigger hover state [unknown] +bidi-chromium-page › page/page-mouse.spec.ts › should trigger hover state on disabled button [unknown] +bidi-chromium-page › page/page-mouse.spec.ts › should trigger hover state with removed window.Node [unknown] +bidi-chromium-page › page/page-mouse.spec.ts › should set modifier keys on click [unknown] +bidi-chromium-page › page/page-mouse.spec.ts › should tween mouse movement [unknown] +bidi-chromium-page › page/page-mouse.spec.ts › should always round down [unknown] +bidi-chromium-page › page/page-mouse.spec.ts › should not crash on mouse drag with any button [unknown] +bidi-chromium-page › page/page-mouse.spec.ts › should dispatch mouse move after context menu was opened [unknown] +bidi-chromium-page › page/page-navigation.spec.ts › should work with _blank target [unknown] +bidi-chromium-page › page/page-navigation.spec.ts › should work with cross-process _blank target [unknown] +bidi-chromium-page › page/page-navigation.spec.ts › should work with _blank target in form [unknown] +bidi-chromium-page › page/page-network-idle.spec.ts › should navigate to empty page with networkidle [unknown] +bidi-chromium-page › page/page-network-idle.spec.ts › should wait for networkidle to succeed navigation [unknown] +bidi-chromium-page › page/page-network-idle.spec.ts › should wait for networkidle to succeed navigation with request from previous navigation [unknown] +bidi-chromium-page › page/page-network-idle.spec.ts › should wait for networkidle in waitForNavigation [unknown] +bidi-chromium-page › page/page-network-idle.spec.ts › should wait for networkidle in setContent [unknown] +bidi-chromium-page › page/page-network-idle.spec.ts › should wait for networkidle in setContent with request from previous navigation [unknown] +bidi-chromium-page › page/page-network-idle.spec.ts › should wait for networkidle when navigating iframe [unknown] +bidi-chromium-page › page/page-network-idle.spec.ts › should wait for networkidle in setContent from the child frame [unknown] +bidi-chromium-page › page/page-network-idle.spec.ts › should wait for networkidle from the child frame [unknown] +bidi-chromium-page › page/page-network-idle.spec.ts › should wait for networkidle from the popup [unknown] +bidi-chromium-page › page/page-network-idle.spec.ts › should wait for networkidle when iframe attaches and detaches [unknown] +bidi-chromium-page › page/page-network-idle.spec.ts › should work after repeated navigations in the same page [unknown] +bidi-chromium-page › page/page-network-request.spec.ts › should work for main frame navigation request [unknown] +bidi-chromium-page › page/page-network-request.spec.ts › should work for subframe navigation request [unknown] +bidi-chromium-page › page/page-network-request.spec.ts › should work for fetch requests @smoke [unknown] +bidi-chromium-page › page/page-network-request.spec.ts › should work for a redirect [unknown] +bidi-chromium-page › page/page-network-request.spec.ts › should not work for a redirect and interception [unknown] +bidi-chromium-page › page/page-network-request.spec.ts › should return headers [unknown] +bidi-chromium-page › page/page-network-request.spec.ts › should get the same headers as the server [unknown] +bidi-chromium-page › page/page-network-request.spec.ts › should not return allHeaders() until they are available [unknown] +bidi-chromium-page › page/page-network-request.spec.ts › should get the same headers as the server CORS [unknown] +bidi-chromium-page › page/page-network-request.spec.ts › should not get preflight CORS requests when intercepting [unknown] +bidi-chromium-page › page/page-network-request.spec.ts › should return postData [unknown] +bidi-chromium-page › page/page-network-request.spec.ts › should work with binary post data [unknown] +bidi-chromium-page › page/page-network-request.spec.ts › should work with binary post data and interception [unknown] +bidi-chromium-page › page/page-network-request.spec.ts › should override post data content type [unknown] +bidi-chromium-page › page/page-network-request.spec.ts › should get |undefined| with postData() when there is no post data [unknown] +bidi-chromium-page › page/page-network-request.spec.ts › should parse the json post data [unknown] +bidi-chromium-page › page/page-network-request.spec.ts › should parse the data if content-type is application/x-www-form-urlencoded [unknown] +bidi-chromium-page › page/page-network-request.spec.ts › should parse the data if content-type is application/x-www-form-urlencoded; charset=UTF-8 [unknown] +bidi-chromium-page › page/page-network-request.spec.ts › should get |undefined| with postDataJSON() when there is no post data [unknown] +bidi-chromium-page › page/page-network-request.spec.ts › should return multipart/form-data [unknown] +bidi-chromium-page › page/page-network-request.spec.ts › should return event source [unknown] +bidi-chromium-page › page/page-network-request.spec.ts › should return navigation bit [unknown] +bidi-chromium-page › page/page-network-request.spec.ts › should return navigation bit when navigating to image [unknown] +bidi-chromium-page › page/page-network-request.spec.ts › should report raw headers [unknown] +bidi-chromium-page › page/page-network-request.spec.ts › should report raw response headers in redirects [unknown] +bidi-chromium-page › page/page-network-request.spec.ts › should report all cookies in one header [unknown] +bidi-chromium-page › page/page-network-request.spec.ts › should not allow to access frame on popup main request [unknown] +bidi-chromium-page › page/page-network-request.spec.ts › page.reload return 304 status code [unknown] +bidi-chromium-page › page/page-network-request.spec.ts › should handle mixed-content blocked requests [unknown] +bidi-chromium-page › page/page-network-response.spec.ts › should work @smoke [unknown] +bidi-chromium-page › page/page-network-response.spec.ts › should return multiple header value [unknown] +bidi-chromium-page › page/page-network-response.spec.ts › should return text [unknown] +bidi-chromium-page › page/page-network-response.spec.ts › should return uncompressed text [unknown] +bidi-chromium-page › page/page-network-response.spec.ts › should throw when requesting body of redirected response [unknown] +bidi-chromium-page › page/page-network-response.spec.ts › should wait until response completes [unknown] +bidi-chromium-page › page/page-network-response.spec.ts › should reject response.finished if page closes [unknown] +bidi-chromium-page › page/page-network-response.spec.ts › should reject response.finished if context closes [unknown] +bidi-chromium-page › page/page-network-response.spec.ts › should return json [unknown] +bidi-chromium-page › page/page-network-response.spec.ts › should return body [unknown] +bidi-chromium-page › page/page-network-response.spec.ts › should return body with compression [unknown] +bidi-chromium-page › page/page-network-response.spec.ts › should return status text [unknown] +bidi-chromium-page › page/page-network-response.spec.ts › should report all headers [unknown] +bidi-chromium-page › page/page-network-response.spec.ts › should report multiple set-cookie headers [unknown] +bidi-chromium-page › page/page-network-response.spec.ts › should behave the same way for headers and allHeaders [unknown] +bidi-chromium-page › page/page-network-response.spec.ts › should provide a Response with a file URL [unknown] +bidi-chromium-page › page/page-network-response.spec.ts › should return set-cookie header after route.fulfill [unknown] +bidi-chromium-page › page/page-network-response.spec.ts › should return headers after route.fulfill [unknown] +bidi-chromium-page › page/page-network-response.spec.ts › should report if request was fromServiceWorker [unknown] +bidi-chromium-page › page/page-network-response.spec.ts › should return body for prefetch script [unknown] +bidi-chromium-page › page/page-network-response.spec.ts › should bypass disk cache when page interception is enabled [unknown] +bidi-chromium-page › page/page-network-response.spec.ts › should bypass disk cache when context interception is enabled [unknown] +bidi-chromium-page › page/page-network-sizes.spec.ts › should set bodySize and headersSize [unknown] +bidi-chromium-page › page/page-network-sizes.spec.ts › should set bodySize to 0 if there was no body [unknown] +bidi-chromium-page › page/page-network-sizes.spec.ts › should set bodySize, headersSize, and transferSize [unknown] +bidi-chromium-page › page/page-network-sizes.spec.ts › should set bodySize to 0 when there was no response body [unknown] +bidi-chromium-page › page/page-network-sizes.spec.ts › should have the correct responseBodySize [unknown] +bidi-chromium-page › page/page-network-sizes.spec.ts › should have the correct responseBodySize for chunked request [unknown] +bidi-chromium-page › page/page-network-sizes.spec.ts › should have the correct responseBodySize with gzip compression [unknown] +bidi-chromium-page › page/page-network-sizes.spec.ts › should handle redirects [unknown] +bidi-chromium-page › page/page-network-sizes.spec.ts › should throw for failed requests [unknown] +bidi-chromium-page › page/page-network-sizes.spec.ts › should work with 200 status code [unknown] +bidi-chromium-page › page/page-network-sizes.spec.ts › should work with 401 status code [unknown] +bidi-chromium-page › page/page-network-sizes.spec.ts › should work with 404 status code [unknown] +bidi-chromium-page › page/page-network-sizes.spec.ts › should work with 500 status code [unknown] +bidi-chromium-page › page/page-network-sizes.spec.ts › should have correct responseBodySize for 404 with content [unknown] +bidi-chromium-page › page/page-network-sizes.spec.ts › should return sizes without hanging [unknown] +bidi-chromium-page › page/page-object-count.spec.ts › should count objects [unknown] +bidi-chromium-page › page/page-request-continue.spec.ts › should work [unknown] +bidi-chromium-page › page/page-request-continue.spec.ts › should amend HTTP headers [unknown] +bidi-chromium-page › page/page-request-continue.spec.ts › should delete header with undefined value [unknown] +bidi-chromium-page › page/page-request-continue.spec.ts › should amend method [unknown] +bidi-chromium-page › page/page-request-continue.spec.ts › should override request url [unknown] +bidi-chromium-page › page/page-request-continue.spec.ts › should not allow changing protocol when overriding url [unknown] +bidi-chromium-page › page/page-request-continue.spec.ts › should not throw when continuing while page is closing [unknown] +bidi-chromium-page › page/page-request-continue.spec.ts › should not throw when continuing after page is closed [unknown] +bidi-chromium-page › page/page-request-continue.spec.ts › should not throw if request was cancelled by the page [unknown] +bidi-chromium-page › page/page-request-continue.spec.ts › should override method along with url [unknown] +bidi-chromium-page › page/page-request-continue.spec.ts › should amend method on main request [unknown] +bidi-chromium-page › page/page-request-continue.spec.ts › post data › should amend post data [unknown] +bidi-chromium-page › page/page-request-continue.spec.ts › post data › should compute content-length from post data [unknown] +bidi-chromium-page › page/page-request-continue.spec.ts › post data › should amend method and post data [unknown] +bidi-chromium-page › page/page-request-continue.spec.ts › post data › should amend utf8 post data [unknown] +bidi-chromium-page › page/page-request-continue.spec.ts › post data › should amend longer post data [unknown] +bidi-chromium-page › page/page-request-continue.spec.ts › post data › should amend binary post data [unknown] +bidi-chromium-page › page/page-request-continue.spec.ts › post data › should use content-type from original request [unknown] +bidi-chromium-page › page/page-request-continue.spec.ts › should work with Cross-Origin-Opener-Policy [unknown] +bidi-chromium-page › page/page-request-continue.spec.ts › should delete the origin header [unknown] +bidi-chromium-page › page/page-request-continue.spec.ts › should continue preload link requests [unknown] +bidi-chromium-page › page/page-request-continue.spec.ts › continue should propagate headers to redirects [unknown] +bidi-chromium-page › page/page-request-continue.spec.ts › redirected requests should report overridden headers [unknown] +bidi-chromium-page › page/page-request-continue.spec.ts › continue should delete headers on redirects [unknown] +bidi-chromium-page › page/page-request-continue.spec.ts › should intercept css variable with background url [unknown] +bidi-chromium-page › page/page-request-continue.spec.ts › continue should not change multipart/form-data body [unknown] +bidi-chromium-page › page/page-request-fallback.spec.ts › should work [unknown] +bidi-chromium-page › page/page-request-fallback.spec.ts › should fall back [unknown] +bidi-chromium-page › page/page-request-fallback.spec.ts › should fall back async [unknown] +bidi-chromium-page › page/page-request-fallback.spec.ts › should not chain fulfill [unknown] +bidi-chromium-page › page/page-request-fallback.spec.ts › should not chain abort [unknown] +bidi-chromium-page › page/page-request-fallback.spec.ts › should fall back after exception [unknown] +bidi-chromium-page › page/page-request-fallback.spec.ts › should chain once [unknown] +bidi-chromium-page › page/page-request-fallback.spec.ts › should amend HTTP headers [unknown] +bidi-chromium-page › page/page-request-fallback.spec.ts › should delete header with undefined value [unknown] +bidi-chromium-page › page/page-request-fallback.spec.ts › should amend method [unknown] +bidi-chromium-page › page/page-request-fallback.spec.ts › should override request url [unknown] +bidi-chromium-page › page/page-request-fallback.spec.ts › post data › should amend post data [unknown] +bidi-chromium-page › page/page-request-fallback.spec.ts › post data › should amend binary post data [unknown] +bidi-chromium-page › page/page-request-fallback.spec.ts › post data › should amend json post data [unknown] +bidi-chromium-page › page/page-request-fulfill.spec.ts › should work [unknown] +bidi-chromium-page › page/page-request-fulfill.spec.ts › should work with buffer as body [unknown] +bidi-chromium-page › page/page-request-fulfill.spec.ts › should work with status code 422 [unknown] +bidi-chromium-page › page/page-request-fulfill.spec.ts › should fulfill with unuassigned status codes [unknown] +bidi-chromium-page › page/page-request-fulfill.spec.ts › should not throw if request was cancelled by the page [unknown] +bidi-chromium-page › page/page-request-fulfill.spec.ts › should allow mocking binary responses [unknown] +bidi-chromium-page › page/page-request-fulfill.spec.ts › should allow mocking svg with charset [unknown] +bidi-chromium-page › page/page-request-fulfill.spec.ts › should work with file path [unknown] +bidi-chromium-page › page/page-request-fulfill.spec.ts › should stringify intercepted request response headers [unknown] +bidi-chromium-page › page/page-request-fulfill.spec.ts › should not modify the headers sent to the server [unknown] +bidi-chromium-page › page/page-request-fulfill.spec.ts › should include the origin header [unknown] +bidi-chromium-page › page/page-request-fulfill.spec.ts › should fulfill with global fetch result [unknown] +bidi-chromium-page › page/page-request-fulfill.spec.ts › should fulfill with fetch result [unknown] +bidi-chromium-page › page/page-request-fulfill.spec.ts › should fulfill with fetch result and overrides [unknown] +bidi-chromium-page › page/page-request-fulfill.spec.ts › should fetch original request and fulfill [unknown] +bidi-chromium-page › page/page-request-fulfill.spec.ts › should fulfill with multiple set-cookie [unknown] +bidi-chromium-page › page/page-request-fulfill.spec.ts › should fulfill with fetch response that has multiple set-cookie [unknown] +bidi-chromium-page › page/page-request-fulfill.spec.ts › headerValue should return set-cookie from intercepted response [unknown] +bidi-chromium-page › page/page-request-fulfill.spec.ts › should fulfill with har response [unknown] +bidi-chromium-page › page/page-request-fulfill.spec.ts › should fulfill preload link requests [unknown] +bidi-chromium-page › page/page-request-fulfill.spec.ts › should fulfill json [unknown] +bidi-chromium-page › page/page-request-fulfill.spec.ts › should fulfill with gzip and readback [unknown] +bidi-chromium-page › page/page-request-fulfill.spec.ts › should not go to the network for fulfilled requests body [unknown] +bidi-chromium-page › page/page-request-intercept.spec.ts › should fulfill intercepted response [unknown] +bidi-chromium-page › page/page-request-intercept.spec.ts › should fulfill response with empty body [unknown] +bidi-chromium-page › page/page-request-intercept.spec.ts › should override with defaults when intercepted response not provided [unknown] +bidi-chromium-page › page/page-request-intercept.spec.ts › should fulfill with any response [unknown] +bidi-chromium-page › page/page-request-intercept.spec.ts › should support fulfill after intercept [unknown] +bidi-chromium-page › page/page-request-intercept.spec.ts › should give access to the intercepted response [unknown] +bidi-chromium-page › page/page-request-intercept.spec.ts › should give access to the intercepted response body [unknown] +bidi-chromium-page › page/page-request-intercept.spec.ts › should intercept multipart/form-data request body [unknown] +bidi-chromium-page › page/page-request-intercept.spec.ts › should fulfill intercepted response using alias [unknown] +bidi-chromium-page › page/page-request-intercept.spec.ts › should support timeout option in route.fetch [unknown] +bidi-chromium-page › page/page-request-intercept.spec.ts › should not follow redirects when maxRedirects is set to 0 in route.fetch [unknown] +bidi-chromium-page › page/page-request-intercept.spec.ts › should intercept with url override [unknown] +bidi-chromium-page › page/page-request-intercept.spec.ts › should intercept with post data override [unknown] +bidi-chromium-page › page/page-request-intercept.spec.ts › should fulfill popup main request using alias [unknown] +bidi-chromium-page › page/page-request-intercept.spec.ts › request.postData is not null when fetching FormData with a Blob [unknown] +bidi-chromium-page › page/page-route.spec.ts › should intercept @smoke [unknown] +bidi-chromium-page › page/page-route.spec.ts › should unroute [unknown] +bidi-chromium-page › page/page-route.spec.ts › should support ? in glob pattern [unknown] +bidi-chromium-page › page/page-route.spec.ts › should work when POST is redirected with 302 [unknown] +bidi-chromium-page › page/page-route.spec.ts › should work when header manipulation headers with redirect [unknown] +bidi-chromium-page › page/page-route.spec.ts › should be able to remove headers [unknown] +bidi-chromium-page › page/page-route.spec.ts › should contain referer header [unknown] +bidi-chromium-page › page/page-route.spec.ts › should properly return navigation response when URL has cookies [unknown] +bidi-chromium-page › page/page-route.spec.ts › should override cookie header [unknown] +bidi-chromium-page › page/page-route.spec.ts › should show custom HTTP headers [unknown] +bidi-chromium-page › page/page-route.spec.ts › should work with redirect inside sync XHR [unknown] +bidi-chromium-page › page/page-route.spec.ts › should pause intercepted XHR until continue [unknown] +bidi-chromium-page › page/page-route.spec.ts › should pause intercepted fetch request until continue [unknown] +bidi-chromium-page › page/page-route.spec.ts › should work with custom referer headers [unknown] +bidi-chromium-page › page/page-route.spec.ts › should be abortable [unknown] +bidi-chromium-page › page/page-route.spec.ts › should be abortable with custom error codes [unknown] +bidi-chromium-page › page/page-route.spec.ts › should not throw if request was cancelled by the page [unknown] +bidi-chromium-page › page/page-route.spec.ts › should send referer [unknown] +bidi-chromium-page › page/page-route.spec.ts › should fail navigation when aborting main resource [unknown] +bidi-chromium-page › page/page-route.spec.ts › should not work with redirects [unknown] +bidi-chromium-page › page/page-route.spec.ts › should chain fallback w/ dynamic URL [unknown] +bidi-chromium-page › page/page-route.spec.ts › should work with redirects for subresources [unknown] +bidi-chromium-page › page/page-route.spec.ts › should work with equal requests [unknown] +bidi-chromium-page › page/page-route.spec.ts › should navigate to dataURL and not fire dataURL requests [unknown] +bidi-chromium-page › page/page-route.spec.ts › should be able to fetch dataURL and not fire dataURL requests [unknown] +bidi-chromium-page › page/page-route.spec.ts › should navigate to URL with hash and and fire requests without hash [unknown] +bidi-chromium-page › page/page-route.spec.ts › should work with encoded server [unknown] +bidi-chromium-page › page/page-route.spec.ts › should work with badly encoded server [unknown] +bidi-chromium-page › page/page-route.spec.ts › should work with encoded server - 2 [unknown] +bidi-chromium-page › page/page-route.spec.ts › should not throw "Invalid Interception Id" if the request was cancelled [unknown] +bidi-chromium-page › page/page-route.spec.ts › should intercept main resource during cross-process navigation [unknown] +bidi-chromium-page › page/page-route.spec.ts › should fulfill with redirect status [unknown] +bidi-chromium-page › page/page-route.spec.ts › should not fulfill with redirect status [unknown] +bidi-chromium-page › page/page-route.spec.ts › should support cors with GET [unknown] +bidi-chromium-page › page/page-route.spec.ts › should add Access-Control-Allow-Origin by default when fulfill [unknown] +bidi-chromium-page › page/page-route.spec.ts › should allow null origin for about:blank [unknown] +bidi-chromium-page › page/page-route.spec.ts › should respect cors overrides [unknown] +bidi-chromium-page › page/page-route.spec.ts › should not auto-intercept non-preflight OPTIONS [unknown] +bidi-chromium-page › page/page-route.spec.ts › should support cors with POST [unknown] +bidi-chromium-page › page/page-route.spec.ts › should support cors with credentials [unknown] +bidi-chromium-page › page/page-route.spec.ts › should reject cors with disallowed credentials [unknown] +bidi-chromium-page › page/page-route.spec.ts › should support cors for different methods [unknown] +bidi-chromium-page › page/page-route.spec.ts › should support the times parameter with route matching [unknown] +bidi-chromium-page › page/page-route.spec.ts › should work if handler with times parameter was removed from another handler [unknown] +bidi-chromium-page › page/page-route.spec.ts › should support async handler w/ times [unknown] +bidi-chromium-page › page/page-route.spec.ts › should contain raw request header [unknown] +bidi-chromium-page › page/page-route.spec.ts › should contain raw response header [unknown] +bidi-chromium-page › page/page-route.spec.ts › should contain raw response header after fulfill [unknown] +bidi-chromium-page › page/page-route.spec.ts › route.fulfill should throw if called twice [unknown] +bidi-chromium-page › page/page-route.spec.ts › route.continue should throw if called twice [unknown] +bidi-chromium-page › page/page-route.spec.ts › route.fallback should throw if called twice [unknown] +bidi-chromium-page › page/page-route.spec.ts › route.abort should throw if called twice [unknown] +bidi-chromium-page › page/page-route.spec.ts › should intercept when postData is more than 1MB [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › should work @smoke [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › should not capture blinking caret by default [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › should capture blinking caret if explicitly asked for [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › should capture blinking caret in shadow dom [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › should clip rect [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › should clip rect with fullPage [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › should clip elements to the viewport [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › should throw on clip outside the viewport [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › should run in parallel [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › should take fullPage screenshots [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › should take fullPage screenshots and mask elements outside of it [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › should restore viewport after fullPage screenshot [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › should allow transparency [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › should render white background on jpeg file [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › should work with odd clip size on Retina displays [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › should work for canvas [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › should capture canvas changes [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › should work for webgl [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › should work for translateZ [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › should work while navigating [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › should work with iframe in shadow [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › path option should work [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › path option should create subdirectories [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › path option should detect jpeg [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › path option should throw for unsupported mime type [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › quality option should throw for png [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › zero quality option should throw for png [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › should prefer type over extension [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › should not issue resize event [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › should work with Array deleted [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › should take fullPage screenshots during navigation [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › mask option › should work [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › mask option › should work with locator [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › mask option › should work with elementhandle [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › mask option › should mask multiple elements [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › mask option › should mask inside iframe [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › mask option › should mask in parallel [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › mask option › should remove mask after screenshot [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › mask option › should work when subframe has stalled navigation [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › mask option › should work when subframe used document.open after a weird url [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › mask option › should work when mask color is not pink #F0F [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › mask option › should hide elements based on attr [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot › mask option › should remove elements based on attr [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot animations › should not capture infinite css animation [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot animations › should not capture pseudo element css animation [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot animations › should not capture css animations in shadow DOM [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot animations › should stop animations that happen right before screenshot [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot animations › should resume infinite animations [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot animations › should not capture infinite web animations [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot animations › should fire transitionend for finite transitions [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot animations › should capture screenshots after layoutchanges in transitionend event [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot animations › should not change animation with playbackRate equal to 0 [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot animations › should trigger particular events for css transitions [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot animations › should trigger particular events for INfinite css animation [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot animations › should trigger particular events for finite css animation [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot animations › should wait for fonts to load [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › should throw if screenshot size is too large [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › page screenshot should capture css transform [unknown] +bidi-chromium-page › page/page-screenshot.spec.ts › should capture css box-shadow [unknown] +bidi-chromium-page › page/page-select-option.spec.ts › should select single option @smoke [unknown] +bidi-chromium-page › page/page-select-option.spec.ts › should select single option by value [unknown] +bidi-chromium-page › page/page-select-option.spec.ts › should fall back to selecting by label [unknown] +bidi-chromium-page › page/page-select-option.spec.ts › should select single option by label [unknown] +bidi-chromium-page › page/page-select-option.spec.ts › should select single option by handle [unknown] +bidi-chromium-page › page/page-select-option.spec.ts › should select single option by index [unknown] +bidi-chromium-page › page/page-select-option.spec.ts › should select single option by multiple attributes [unknown] +bidi-chromium-page › page/page-select-option.spec.ts › should not select single option when some attributes do not match [unknown] +bidi-chromium-page › page/page-select-option.spec.ts › should select only first option [unknown] +bidi-chromium-page › page/page-select-option.spec.ts › should not throw when select causes navigation [unknown] +bidi-chromium-page › page/page-select-option.spec.ts › should select multiple options [unknown] +bidi-chromium-page › page/page-select-option.spec.ts › should select multiple options with attributes [unknown] +bidi-chromium-page › page/page-select-option.spec.ts › should respect event bubbling [unknown] +bidi-chromium-page › page/page-select-option.spec.ts › should throw when element is not a