Buy fast & affordable proxy servers. Get 10 proxies today for free.
Download our Proxy Server Extension
© Webshare Proxy
payment methods
In this guide, we’ll cover the following key aspects of cookie management in Puppeteer:
In this section, we will delve into the process of accepting cookies, specifically from a popup window that many websites display to request user consent for cookie storage.
When you visit a website for the first time or after clearing your browser cookies, you often encounter a popup or banner requesting your consent to store cookies. It is important to address these popups programmatically to continue our tasks seamlessly. To accept cookies from a popup in Puppeteer, you can use the following function:
Now, let's break down how this function works in detail:
1) Function Signature: The acceptCookiesFromPopup function accepts three parameters:
2) Waiting for the Popup: Inside the function, we use await page.waitForSelector(popupSelector) to instruct Puppeteer to wait until the specified popupSelector becomes available on the page. This step ensures that Puppeteer doesn't proceed until the cookie consent popup has appeared.
3) Clicking the "Accept" Button: Once the popup is visible, we simulate a click on the "Accept" button using await page.click(acceptButtonSelector). This action mimics the user clicking the button to accept the cookies.
4) Handling Errors: We wrap the entire process in a try-catch block to handle potential errors gracefully. If any error occurs during the process of accepting cookies, it will be caught, and an error message will be logged to the console. The function returns false to indicate that cookies were not successfully accepted in case of an error.
5) Success Indicator: If the function successfully completes without encountering any errors, it returns true to indicate that cookies have been accepted.
Saving cookies during a Puppeteer session serves several essential purposes:
Here is the function for saving cookies:
Now, let’s break down how this function works:
1) Function Signature: The saveCookiesToFile function accepts two parameters:
2) Getting Cookies: Inside the function, we use await page.cookies() to retrieve all cookies from the current page. Puppeteer’s page.cookies() method returns an array of cookie objects.
3) Writing Cookies to a File: We use the Node.js fs (file system) module to write the retrieved cookies to the specified file. The fs.writeFileSync() function is used to write the cookies in a human-readable JSON format, making it easy to load and reuse them later.
4) Handling Errors: We wrap the entire process in a try-catch block to handle errors.
5) Success Indicator: If the function completes successfully without encountering any errors, it returns true to indicate that cookies have been saved to the specified file.
In the world of web automation with Puppeteer, the ability to load cookies is an invaluable tool for manipulating session continuity, managing user authentication and restoring user-specific data. When you are simulating returning users or preserving session states, loading cookies allows you to seamlessly pick up where you left off in your automation journey.
Here is the function for loading cookies:
Let’s break down how this function works:
1) Function Signature: The loadCookiesFromFile function accepts two parameters:
2) Reading Cookies from File: Inside the function, we use the Node.js fs (file system) module to read the cookies from the specified file. We assume that the cookies are stored in JSON format in the file.
3) Setting Cookies in the Page: We use await page.setCookie(...cookies) to set the cookies in the current page. Puppeteer’s page.setCookie method accepts an array of cookie objects and sets them in the page’s browser context.
Clearing cookies during a Puppeteer session is essential for various reasons:
Here’s the function for clearing cookies:
Let’s break down the working of this function:
1) FunctionSignature: The clearCookies function accepts two parameters:
2) Clearing Cookies: Inside the function, we check if cookieNames is empty. If it is, we clear all cookies on the page by running the code using page.evaluate(). This code iterates through all cookies and removes them by setting their expiration date to the past. This effectively deletes all cookies.
3) Selective Cookie Clearance: If specific cookie names are provided in the cookieNames array, we use Puppeteer’s page.deleteCookie(...cookieNames) method to delete only the specified cookies. This allows you to target and clear particular cookies while retaining others.
Similar to the previous sections, we handle errors by wrapping the entire process in a try-catch block.
Mastering cookie management in Puppeteer is crucial for web automation. In this article, we discussed how to accept, save, load and clear cookies programmatically. Accepting cookies allows you to seamlessly interact with websites, while saving and loading cookies ensure session persistence and data retention. Additionally, clearing cookies offers the flexibility to reset sessions or maintain privacy and compliance.
Puppeteer Scraping: Get Started in 10 Minutes