
"#gvDocketResult_ctl0" + rows.length + "_hlDocumentRedacted"Īwait newPage._nd("tDownloadBehavior", ) įrom what I've found so far it seems like if I can get the link shown in the src = '' section of the webpage (image below) then I might be able to use a page.goto(link) to download the pdf? In any case I have no idea how to get to that link in puppeteer, so if anyone has advice on that it would also be appreciated. The part of my code that's trying to download the pdf currently looks like this (commented lines being download attempts that didn't work): const newPagePromise = new Promise(x =>īrowser.once("targetcreated", target => x(target.page())) Puppeteer is a Node.js library developed by Google that lets you control headless Chrome through the DevTools Protocol. Specifically, I want to download the pdf from a page like this.


I'm trying to do a bit of web scraping using Puppeteer, but I'm not sure how to actually download the documents I find.
