-1
첫 번째 탭을 닫고 빈 탭을 남겨두기를 원합니다. 다음은 의미를 보여주는 그림입니다. 로컬 경로 인 크롬을 시작할 때 첫 번째 탭 닫기
여기에 내 코드
const fsExtra = require('fs-extra')
const chromeLauncher = require('lighthouse/chrome-launcher/chrome-launcher');
const CDP = require('chrome-remote-interface');
const fs = require('fs');
const windowWidth = 6200;
const windowHeight = 6060;
headless=false
const launchConfig = {
chromeFlags: [
`--window-size=${windowWidth},${windowHeight}`,
'--disable-gpu',
headless ? '--headless' : ''
]
}
async function launchChrome(headless = true) {
return await chromeLauncher.launch(launchConfig);
}
const chrome = launchChrome();
console.log(chrome)