forked from mirrors/gecko-dev
Bug 1694506 - [puppeteer] Update puppeteer-expected.json for v8.0.0 r=remote-protocol-reviewers,whimboo
Depends on D108859 Summary of changes. New tests: - PASS: Page Page.waitForRequest should work with async predicate (page.spec.ts) - PASS: JSHandle JSHandle.jsonValue works with jsonValues that are not objects (jshandle.spec.ts) - PASS: JSHandle JSHandle.jsonValue works with jsonValues that are primitives (jshandle.spec.ts) - FAIL: Page Page.emulateNetworkConditions should change navigator.connection.effectiveType (page.spec.ts) - FAIL: Launcher specs Puppeteer Puppeteer.connect should be able to reconnect (launcher.spec.ts) The existing TIMEOUT test "Page Page.Events.Popup should work with clicking target=_blank (page.spec.ts)" was split in 2: - TIMEOUT: Page Page.Events.Popup should work with clicking target=_blank and without rel=opener (page.spec.ts) - TIMEOUT: Page Page.Events.Popup should work with clicking target=_blank and with rel=opener (page.spec.ts) The existing FAIL test "Screenshots Page.screenshot should clip elements to the viewport (screenshot.spec.ts)" was changed and is now passing (we didn't clip to the viewport, and puppeteer doesn't expect that anymore): - PASS: Screenshots Page.screenshot should get screenshot bigger than the viewport (screenshot.spec.ts) The existing SKIP test "Launcher specs Puppeteer Puppeteer.launch should be able to launch Firefox (launcher.spec.ts)" is now running with itFailsWindows instead of itOnlyRegularInstall. It used to be flagged as SKIP, but it is now failing because we attempt to run it. - FAIL: Launcher specs Puppeteer Puppeteer.launch should be able to launch Firefox (launcher.spec.ts) Differential Revision: https://phabricator.services.mozilla.com/D108100
This commit is contained in:
parent
408f997797
commit
7f55e6839f
1 changed files with 22 additions and 4 deletions
|
|
@ -746,6 +746,12 @@
|
|||
"JSHandle JSHandle.jsonValue should work (jshandle.spec.ts)": [
|
||||
"PASS"
|
||||
],
|
||||
"JSHandle JSHandle.jsonValue works with jsonValues that are not objects (jshandle.spec.ts)": [
|
||||
"PASS"
|
||||
],
|
||||
"JSHandle JSHandle.jsonValue works with jsonValues that are primitives (jshandle.spec.ts)": [
|
||||
"PASS"
|
||||
],
|
||||
"JSHandle JSHandle.jsonValue should not work with dates (jshandle.spec.ts)": [
|
||||
"FAIL"
|
||||
],
|
||||
|
|
@ -897,7 +903,7 @@
|
|||
"FAIL"
|
||||
],
|
||||
"Launcher specs Puppeteer Puppeteer.launch should be able to launch Firefox (launcher.spec.ts)": [
|
||||
"SKIP"
|
||||
"FAIL"
|
||||
],
|
||||
"Launcher specs Puppeteer Puppeteer.connect should be able to connect multiple times to the same browser (launcher.spec.ts)": [
|
||||
"PASS"
|
||||
|
|
@ -914,6 +920,9 @@
|
|||
"Launcher specs Puppeteer Puppeteer.connect should be able to connect to the same page simultaneously (launcher.spec.ts)": [
|
||||
"FAIL"
|
||||
],
|
||||
"Launcher specs Puppeteer Puppeteer.connect should be able to reconnect (launcher.spec.ts)": [
|
||||
"FAIL"
|
||||
],
|
||||
"Launcher specs Puppeteer Puppeteer.executablePath should work (launcher.spec.ts)": [
|
||||
"SKIP"
|
||||
],
|
||||
|
|
@ -1238,7 +1247,10 @@
|
|||
"Page Page.Events.Popup should work with noopener (page.spec.ts)": [
|
||||
"TIMEOUT"
|
||||
],
|
||||
"Page Page.Events.Popup should work with clicking target=_blank (page.spec.ts)": [
|
||||
"Page Page.Events.Popup should work with clicking target=_blank and without rel=opener (page.spec.ts)": [
|
||||
"TIMEOUT"
|
||||
],
|
||||
"Page Page.Events.Popup should work with clicking target=_blank and with rel=opener (page.spec.ts)": [
|
||||
"TIMEOUT"
|
||||
],
|
||||
"Page Page.Events.Popup should work with fake-clicking target=_blank and rel=noopener (page.spec.ts)": [
|
||||
|
|
@ -1280,6 +1292,9 @@
|
|||
"Page Page.setOfflineMode should emulate navigator.onLine (page.spec.ts)": [
|
||||
"FAIL"
|
||||
],
|
||||
"Page Page.emulateNetworkConditions should change navigator.connection.effectiveType (page.spec.ts)": [
|
||||
"FAIL"
|
||||
],
|
||||
"Page ExecutionContext.queryObjects should work (page.spec.ts)": [
|
||||
"FAIL"
|
||||
],
|
||||
|
|
@ -1334,6 +1349,9 @@
|
|||
"Page Page.waitForRequest should respect default timeout (page.spec.ts)": [
|
||||
"PASS"
|
||||
],
|
||||
"Page Page.waitForRequest should work with async predicate (page.spec.ts)": [
|
||||
"PASS"
|
||||
],
|
||||
"Page Page.waitForRequest should work with no timeout (page.spec.ts)": [
|
||||
"PASS"
|
||||
],
|
||||
|
|
@ -1793,8 +1811,8 @@
|
|||
"Screenshots Page.screenshot should clip rect (screenshot.spec.ts)": [
|
||||
"FAIL"
|
||||
],
|
||||
"Screenshots Page.screenshot should clip elements to the viewport (screenshot.spec.ts)": [
|
||||
"FAIL"
|
||||
"Screenshots Page.screenshot should get screenshot bigger than the viewport (screenshot.spec.ts)": [
|
||||
"PASS"
|
||||
],
|
||||
"Screenshots Page.screenshot should run in parallel (screenshot.spec.ts)": [
|
||||
"PASS"
|
||||
|
|
|
|||
Loading…
Reference in a new issue