在提到Node.js中的灯塔镀铬启动器时,有人可以帮我设置无头镀铬的代理服务器here
const launcher = new ChromeLauncher({
port: 9222,
autoSelectChrome: true, // False to manually select which Chrome install.
additionalFlags: [
'--window-size=412,732',
'--disable-gpu',
'--proxy-server="IP:PORT"',
headless ? '--headless' : ''
]
});
但是,上面的脚本根本没有打到我的代理服务器。 Chrome似乎回退到DIRECT://与目标网站的连接。
在无头chrome的上下文中讨论使用HTTP / HTTPS代理服务器的另一个资源是this。但它没有给出如何在Node.js中使用它的任何示例。
答案 0 :(得分:6)
我使用常规exec
尝试了它,它运行得很好,这是我的代码段:
const exec = require('child_process').exec;
function launchHeadlessChrome(url, callback) {
// Assuming MacOSx.
const CHROME = '/Users/h0x91b/Desktop/Google\\ Chrome\\ Beta.app/Contents/MacOS/Google\\ Chrome';
exec(`${CHROME} --headless --disable-gpu --remote-debugging-port=9222 --proxy-server=127.0.0.1:8888 ${url}`, callback);
}
launchHeadlessChrome('https://www.chromestatus.com', (err, stdout, stderr) => {
console.log('callback', err, stderr, stdout)
});
然后我导航到http://localhost:9222并在开发人员工具中看到:
代理连接错误,这没关系,因为我在此端口上没有代理,但这意味着Chrome尝试通过代理连接...
BTW Chrome版本为59。
检查了源代码https://github.com/GoogleChrome/lighthouse/blob/master/chrome-launcher/chrome-launcher.ts#L38-L44
我在这里看不到additionalFlags
,只有chromeFlags
尝试使用它...