Currently, I am facing a challenge with my code in JavaScript that is responsible for opening a page and logging in. Once Puppeteer finishes the login process, I need it to redirect to another page on the same site without clearing the cache. I attempted using page.goto(url);
, but this action clears the cache.
I would greatly appreciate any suggestions or solutions to this issue.