Skip to content

Commit

Permalink
fix: remove CDP-specific preferences from defaults for Firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
OrKoN committed Dec 5, 2023
1 parent e82cb47 commit f7b82f9
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 10 deletions.
6 changes: 0 additions & 6 deletions packages/browsers/src/browser-data/firefox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -220,12 +220,6 @@ function defaultProfilePreferences(
// Make sure opening about:addons will not hit the network
'extensions.webservice.discoverURL': `http://${server}/dummy/discoveryURL`,

// Temporarily force disable BFCache in parent (https://bit.ly/bug-1732263)
'fission.bfcacheInParent': false,

// Force all web content to use a single content process
'fission.webContentIsolationStrategy': 0,

// Allow the application to have focus even it runs in the background
'focusmanager.testmode': true,
// Disable useragent updates
Expand Down
13 changes: 12 additions & 1 deletion packages/puppeteer-core/src/node/FirefoxLauncher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,18 @@ export class FirefoxLauncher extends ProductLauncher {

await createProfile(SupportedBrowsers.FIREFOX, {
path: userDataDir,
preferences: extraPrefsFirefox,
preferences: {
...extraPrefsFirefox,
...(options.protocol === 'cdp'
? {
// Temporarily force disable BFCache in parent (https://bit.ly/bug-1732263)
'fission.bfcacheInParent': false,

// Force all web content to use a single content process
'fission.webContentIsolationStrategy': 0,
}
: {}),
},
});

let firefoxExecutable: string;
Expand Down
18 changes: 15 additions & 3 deletions test/TestExpectations.json
Original file line number Diff line number Diff line change
Expand Up @@ -1497,7 +1497,7 @@
"testIdPattern": "[click.spec] Page.click should click the button with fixed position inside an iframe",
"platforms": ["darwin", "linux", "win32"],
"parameters": ["firefox", "webDriverBiDi"],
"expectations": ["PASS"]
"expectations": ["FAIL"]
},
{
"testIdPattern": "[click.spec] Page.click should click the button with fixed position inside an iframe",
Expand Down Expand Up @@ -1893,7 +1893,7 @@
"testIdPattern": "[frame.spec] Frame specs Frame Management should report different frame instance when frame re-attaches",
"platforms": ["darwin", "linux", "win32"],
"parameters": ["firefox", "webDriverBiDi"],
"expectations": ["PASS"]
"expectations": ["FAIL"]
},
{
"testIdPattern": "[frame.spec] Frame specs Frame Management should report frame from-inside shadow DOM",
Expand Down Expand Up @@ -1959,7 +1959,7 @@
"testIdPattern": "[frame.spec] Frame specs Frame.evaluate should throw for detached frames",
"platforms": ["darwin", "linux", "win32"],
"parameters": ["firefox", "webDriverBiDi"],
"expectations": ["PASS"]
"expectations": ["FAIL"]
},
{
"testIdPattern": "[frame.spec] Frame specs Frame.executionContext should work",
Expand Down Expand Up @@ -2765,12 +2765,24 @@
"parameters": ["cdp", "firefox"],
"expectations": ["FAIL"]
},
{
"testIdPattern": "[oopif.spec] OOPIF clickablePoint, boundingBox, boxModel should work for elements inside OOPIFs",
"platforms": ["darwin", "linux", "win32"],
"parameters": ["firefox", "webDriverBiDi"],
"expectations": ["FAIL"]
},
{
"testIdPattern": "[oopif.spec] OOPIF should keep track of a frames OOP state",
"platforms": ["darwin", "linux", "win32"],
"parameters": ["firefox", "webDriverBiDi"],
"expectations": ["PASS"]
},
{
"testIdPattern": "[oopif.spec] OOPIF should provide access to elements",
"platforms": ["darwin", "linux", "win32"],
"parameters": ["firefox", "webDriverBiDi"],
"expectations": ["FAIL"]
},
{
"testIdPattern": "[oopif.spec] OOPIF should support lazy OOP frames",
"platforms": ["darwin", "linux", "win32"],
Expand Down

0 comments on commit f7b82f9

Please sign in to comment.