I am trying automize the tasks I want to do in my Youtube account via using puppeteer. What I try to do is removing the videos from my playlist which is a very long list. My initial approach to the problem was opening a browser page with
const browser = await puppeteer.launch({
headless: false,
executablePath: "C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe"
})
const page = await browser.newPage()
await page.goto("https://www.youtube.com/playlist?list=WL")
My intention was opening a web page with same session as if I am using the the Google Chrome as normally used. But the browser still asked me to login my Youtube Account. Is there any way for opening a browser tab with already logged on my Youtube Account.