Let me walk you through the steps I need to automate:
1) Go to URL, fill out form, and click submit
2) This downloads a PDF
3) I want to only print second page of PDF
So far, I've been using python with selenium to automate step 1 and 2. Now I am stuck at printing the second page of downloaded PDF. I would love it to be OS universal (I know I would have to write different logic between Windows and Mac), but if that is not possible, Windows is fine.
So far I have looked at
Silent printing of a PDF in Python
But I was wondering if there any other solutions. Thank you