免责声明:我知道Flash将在2020年底被废弃,但是我不能放弃案件,而需要在Puppeteer中安装Flash,尽管我也不喜欢。
我需要抓取某些Flash网站并对其进行截图,以进行以后的程序比较。我可以提供一个需要检查的有限域列表(尽管该列表可能会随时间变化,因此能够以某种方式在运行时加载它们非常好)。
经过一段时间的解决之后,通过Internet搜索之后,与SA问题最接近的是:how to add urls to Flash white list in puppeteer
在使用puppeteer-extra-plugin-flash
,为PepperFlash
提供路径和版本并运行Chrome可执行文件而不是Chromium之后,我设法正确识别了Flash网站,但是我仍然需要单击灰色的拼图以允许Flash可以在任何网站上运行。
我只是找不到能在2019年7月使用的解决方案。
我尝试使用各种参数:
--ppapi-in-process ||
--disable-extensions-except=${pluginPath}/.. ||
--allow-outdated-plugins ||
--no-user-gesture-required
还有更多,可能无关。对于其他人来说似乎最成功的方法似乎是使用PluginsAllowedForUrls
并提供带有通配符的url列表,然后通过--user-data-dir
加载预定义的配置文件-但我也没有走运(我有我认为准备适当的个人资料会出现问题)。
我正在构建的此工具将不会公开,只有受过良好教育的团队才能在内部使用-因此,我不必担心太多的安全约束。我只需要在puppeteer中使用Flash。我也不需要关心对其进行Docker化。
我当前的设置,已简化:
// within async function
const browser = await puppeteer.launch({
headless: false,
executablePath: '/Applications/Google Chrome.app/Contents/MacOS/Google Chrome',
args: [
'--window-size=800,600',
'--enable-webgl',
'--enable-accelerated-2d-canvas',
`--user-data-dir=${path.join(process.cwd(), 'chrome-user-data')}`
// '--always-authorize-plugins', -> does not seem to be doing anything in our case
// '--enable-webgl-draft-extensions', -> does not seem to be doing anything in our case
// '--enable-accelerated-vpx-decode', -> does not seem to be doing anything in our case
// '--no-user-gesture-required', -> does not seem to be doing anything in our case
// '--ppapi-in-process', -> does not seem to be doing anything in our case
// '--ppapi-startup-dialog', -> does not seem to be doing anything in our case
// `--disable-extensions-except=${pluginPath}/..`, -> does not solve issue with blocked
// '--allow-outdated-plugins', -> does not seem to be doing anything in our case
],
});
const context = await browser.defaultBrowserContext();
const page = await context.newPage();
const url = new URL('http://ultrasounds.com');
const response = await fetch(url.href);
await page.setViewport({ width: 800, height: 600});
await page.goto(url.href, { waitUntil: 'networkidle2' });
await page.waitFor(10000);
const screenshot = await page.screenshot({
encoding: 'binary',
});
Chrome version: 75.0.3770.100
,
puppeteer-extra: 2.1.3
puppeteer-extra-plugin-flash: 2.13
感谢任何一种指导,有些工作示例将很有趣,在此先感谢您!
答案 0 :(得分:6)
我设法做到了。我找到了较旧的Chrome版本(65),并使其与puppeteer-extra
一起运行。
我使用并正在运行的库的版本:
PepperFlashPlugin版本:32.0.0.223
谷歌浏览器:65.0.3325.181
Puppeteer-core:1.7.0
(如果您需要的版本不是65,请检查相应版本的标签)
puppeteer-extra
:2.1.3
puppeteer
:1.0.0
puppeteer-extra-plugin-flash
:2.1.3
启动浏览器如下:
const browser = await PuppeteerExtra.launch({
headless: false,
executablePath: process.env.CHROME_EXECUTABLE,
args: [
'--window-size=800,600',
'--enable-webgl',
'--enable-accelerated-2d-canvas',
],
});
const page = await this.fBrowser.newPage();
await page.setViewport({ width: 800, height: 600});
await page.goto('http://ultrasounds.com', { waitUntil: 'networkidle2' });
它有效! ?