我是不是错过了什么,或者这已经不可能了?我想我已经尝试了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();
})();
字符串
1条答案
按热度按时间ql3eal8s1#
puppeteer-firefox package
是deprecated。当你说“启动Chrome窗口也不走运”时,你用的是什么代码?