让我们从代码开始:
#!/usr/bin/env node
const ChildProc = require('child_process');
const chrome = ChildProc.spawn('/usr/bin/google-chrome',['--incognito',`--app=data:text/html,<p>Hello World</p>`],{detached: true, stdio: 'ignore'});
chrome.unref();
setTimeout(() => {
console.log('killing');
chrome.kill();
}, 2500); // pretend we did some stuff, and now we're done with chrome.
我的Chrome窗口正在打开,但是无法以编程方式关闭它。还有什么我可以尝试的吗?
答案 0 :(得分:0)
我找到了chrome-launcher并查看了源代码。显然,完成这项工作的技巧是--user-data-dir=/tmp/lighthouse.6ppUDxi
命令行标志。
例如,这可行:
#!/usr/bin/env node
const ChildProc = require('child_process');
function makeUnixTmpDir() {
return ChildProc.execSync('mktemp -d -t lighthouse.XXXXXXX').toString().trim();
}
const chrome = ChildProc.spawn('/usr/bin/google-chrome',[
'--disable-translate',
'--disable-extensions',
'--disable-background-networking',
'--safebrowsing-disable-auto-update',
'--disable-sync',
'--metrics-recording-only',
'--disable-default-apps',
'--mute-audio',
'--no-first-run',
'--user-data-dir='+makeUnixTmpDir(),
'https://google.com',
],{detached: true, stdio: 'ignore'});
// chrome.unref();
setTimeout(() => {
console.log('killing');
chrome.kill();
}, 5000); // pretend we did some stuff, and now we're done with chrome.
它可能与Chrome合并进程的方式有关,但是我想如果窗口使用其自己的用户个人资料,则不会这样做。