I have a Python app navigating through a website using Webbot. On the final page, it renders and streams a PDF to the browser (without an endpoint URL). This is displayed in the chrome PDF viewer but I need to download this.
I am unsure of how to go about activating the download here or obtaining this file through the normal method of request.get()
The URL is generic: www.website.com/generatePDF
chrome viewer showing download button
I can navigate to this page, I'm just not sure how to go about getting the actual PDF downloaded. Because everything uses scripting on the backend, I need to navigate button clicks (URL's are hidden).
Thoughts?