Posts

Showing posts with the label pdf

JAVA PDF Compare On PDF Documents From Different States

Image
Clash Royale CLAN TAG #URR8PPP JAVA PDF Compare On PDF Documents From Different States I am an automation engineer (working in a Java framework) and recently due to compliance issues I have a need to create a test that compares multiple pdf documents. The pdf documents are of a legal nature and contain different verbiage per state. I have never done this before. Just looking for implementation suggestions, was hoping to avoid something yucky. I would be accessing each document via a link, which would open in Docusign. The scenario would be open the document for New York and then compare it to a baseline document for New York, open a document for Maryland and then compare it to a baseline document for Maryland, open a document for Virginia and compare it to a baseline document for Virginia, etc. By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and ...

Programmatically Print a PDF File - Specifying Printer

Image
Clash Royale CLAN TAG #URR8PPP Programmatically Print a PDF File - Specifying Printer I have a requirement to print an existing PDF file from a Python script. I need to be able to specify the printer in the script. It's running on Windows XP. Any ideas what I could do? This method looks like it would work except that I cannot specify the printer: win32api.ShellExecute ( 0, "print", filename, None, ".", 0 ) This question has answers that may be good or bad; the system has marked it active so that they can be reviewed. you mean "can not specify the printer" rather than "can specify", yes? – msw May 20 '10 at 23:47 Yeah, I fixed that, thanks. – Greg May 21 '10 at 11:01 ...