Is there a way to close a tab in puppeteer? Or do tabs automatically close when there is no reference to it (i.e., similar to garbage collector)?
My code's structure:
//main
let browser = await puppeteer.launch()
let res1 = await func1(browser);
let res2 = await func1(browser);
function func1(browser) {
browser.newPage();
...
//I'm not closing the page
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…