NodeJS 从puppeteer打开新的firefox窗口失败

eit6fx6z  于 12个月前  发布在  Node.js
关注(0)|答案(1)|浏览(116)

我是不是错过了什么,或者这已经不可能了?我想我已经尝试了3次不同的迭代。这段代码只是超时了......启动Chrome窗口也没有运气。

const puppeteer = require('puppeteer-firefox');

(async () => {
  const browser = await puppeteer.launch({
    product: 'firefox',
    executablePath: '/Applications/Firefox.app/Contents/MacOS/firefox-bin',
    firefoxUserPrefs: {
      'browser.shell.checkDefaultBrowser': false,
      'security.sandbox.content.level': 5
    }
  });

  const page = await browser.newPage();

  await page.goto('https://www.example.com');
  await page.waitForNavigation();

  // Do something on the page

  await browser.close();
})();

字符串

ql3eal8s

ql3eal8s1#

puppeteer-firefox packagedeprecated
当你说“启动Chrome窗口也不走运”时,你用的是什么代码?

相关问题