2
I am developing an application where I will have to make a Crawler on a specific website.
The application will contain an endpoint to an Azure Function where Crawler will capture.
So far so good, however, we will have to save evidence that Rawler went through the site. We are thinking of saving a PDF with the screenshot, but as specified in the Azure Functions documentation, Selenium (which would be a good alternative) or Phantomjs do not work.
Another approach would be to download the content of the entire site in HTML and somehow process the HTML to generate a PDF with what was seen by Crawler.
I wonder if there is a library that works in Azure Functions to capture some URL and save to PDF.
Grateful.
Do you want to save the physical file inside Azure Functions? It would have to be saved in Azure Storage, correct?
– mcamara