Reading the pdf file using selenium webdriver

0 votes
I m clicking on a link on a web page.When clicking on a link, a pdf file opens up in new window. I had to read that pdf file to validate some data against the transactions done. How can I validate it without downloading it?
Apr 25, 2018 in Selenium by Martin
• 4,320 points
7,400 views
I am unable to close pdf document after reading from local directory, Can you please advise?

Hii @SA,

You need to run this script first in selenium java class, so when a pdf window comes in the UI,it just closes it

WinWaitActive("[CLASS:AcrobatSDIWindow]")
WinActivate("[CLASS:AcrobatSDIWindow]")
WinClose("[CLASS:AcrobatSDIWindow]")

To run in the java code use: Runtime.getRuntime().exec("E:\\Auto_IT_Scripts_New\\Close_PDF_File.exe");

This will run the script in the system and the script run stops once the file has been closed.

Hope it helps!!

1 answer to this question.

0 votes

Use should use PDFBox and FontBox.

    public String readPDFInURL() throws EmptyFileException, IOException {

        WebDriver driver = new FirefoxDriver();

        // page with example pdf document

        driver.get("file:///C:/Users/admin/Downloads/theleader.pdf");

        URL url = new URL(driver.getCurrentUrl());

        InputStream is = url.openStream();

        BufferedInputStream fileToParse = new BufferedInputStream(is);

        PDDocument document = null;

        try {

            document = PDDocument.load(fileToParse);

            String output = new PDFTextStripper().getText(document);

        } finally {

            if (document != null) {

                document.close();

            }

            fileToParse.close();

            is.close();

        }

        return output;

    }

Some of the functions from the older versions of PDFBox have been deprecated, so we need to use another FontBox along with PDFBox. I have used PDFBox (2.0.3) and FontBox (2.0.3) and it is working fine. It won't read images though.

answered Apr 25, 2018 by Vardy
• 2,360 points

Related Questions In Selenium

0 votes
1 answer

How can I download the *.jar file from http:// seleniumhq.org using selenium WebDriver?

For Selenium Standalone Server use this: profile.setPreference("browser.helperApps.neverAsk.saveToDisk", "application/java-archive"); and ...READ MORE

answered Apr 9, 2018 in Selenium by Martin
• 4,320 points
3,237 views
0 votes
2 answers

How to scroll the Page up or down in Selenium WebDriver? (using java)

JavascriptExecutor jsx = (JavascriptExecutor)driver; jsx.executeScript("window.scrollBy(0,555)", ""); or Action classes ...READ MORE

answered Sep 6, 2020 in Selenium by Sri
• 3,190 points
18,486 views
0 votes
1 answer

How do i change the location where my file gets downloaded in Selenium Webdriver and firefox driver?

There are a couple of errors there. ...READ MORE

answered Apr 13, 2018 in Selenium by nsv999
• 5,500 points
5,869 views
0 votes
1 answer
0 votes
2 answers

Finding WebDriver element with Class Name in java

The better way to handle this element ...READ MORE

answered Apr 10, 2018 in Selenium by nsv999
• 5,500 points
12,711 views
0 votes
2 answers

Problem while using InternetExplorerDriver in Selenium WebDriver

enable trusted connection  in internet explorer by ...READ MORE

answered Aug 31, 2020 in Selenium by Sri
• 3,190 points
8,607 views
0 votes
1 answer

Geo-location microphone camera pop up

To Allow or Block the notification, access using Selenium and you have to ...READ MORE

answered May 11, 2018 in Selenium by Samarpit
• 5,910 points
6,680 views
0 votes
2 answers

How to use such xpath to find web elements

xpath are two types. 1) Absolute XPath:    /html/b ...READ MORE

answered Sep 3, 2020 in Selenium by Sri
• 3,190 points
7,551 views
0 votes
1 answer

Using gettext() method for the specific element using Selenium WebDriver

Mistake is that u r printing the ...READ MORE

answered Apr 10, 2018 in Selenium by Vardy
• 2,360 points
28,449 views
0 votes
1 answer

Select an item from a dropdown list using Selenium WebDriver

Use this then it will work - new ...READ MORE

answered Apr 9, 2018 in Selenium by Vardy
• 2,360 points
7,507 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP