Puppeteer allows you to automate everything you can do in the browser manually and even more. You can take screenshots of the entire page and the specific elements.
Make sure you installed the puppeteer library first:
Then you can import the library and take a screenshot of any desired element:
It is essential to wait until the selector is ready and rendered. Otherwise, you can miss it and take a screenshot of nothing. After the element is ready, you need to find it (select it) and then call the screenshot()
method.
In our screenshot API, you can take the screenshot of the element by specifying the selector parameter.
If you want to check out the complete guide on how to take screenshots with Puppeteer, you are welcome.