We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fb4e0e commit 6624a36Copy full SHA for 6624a36
firefox.ts
@@ -4,10 +4,12 @@ async function main() {
4
await using browser = await firefox.launch({
5
headless: true,
6
args: [
7
- "--disable-gpu",
8
"--no-sandbox",
9
- "--disable-dev-shm-usage",
10
],
+ firefoxUserPrefs: {
+ "gfx.webrender.all": false,
11
+ "media.hardware-video-decoding.enabled": false,
12
+ },
13
});
14
await using page = await browser.newPage();
15
await page.goto("https://example.com");
0 commit comments