Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
656 views
Welcome To Ask or Share your Answers For Others

1 Answer

There's a way to close a page:

page.close();

You can read about details in the docs for the API: https://github.com/puppeteer/puppeteer/blob/main/docs/api.md#pagecloseoptions


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...