Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Python by (19.9k points)

I want to download embedded PDF from a webpage using selenium just like in this image. Embedded PDF image

For example, page like this: https://www.sebi.gov.in/enforcement/orders/jun-2019/adjudication-order-in-respect-of-three-entities-in-the-matter-of-prism-medico-and-pharmacy-ltd-_43323.html

I tried the code mentioned below but it did not work out.

def download_pdf(lnk):

    from selenium import webdriver

    from time import sleep

    options = webdriver.ChromeOptions()

    download_folder = "/*My folder*/"    

    profile = {"plugins.plugins_list": [{"enabled": False,

                                         "name": "Chrome PDF Viewer"}],

               "download.default_directory": download_folder,

               "download.extensions_to_open": ""}

    options.add_experimental_option("prefs", profile)

    print("Downloading file from link: {}".format(lnk))

    driver = webdriver.Chrome('/*Path of chromedriver*/',chrome_options = options)

    driver.get(lnk)

    imp_by1 = driver.find_element_by_id("secondaryToolbarToggle")

    imp_by1.click()

    imp_by = driver.find_element_by_id("secondaryDownload")

    imp_by.click()

    print("Status: Download Complete.")

    driver.close()

download_pdf('https://www.sebi.gov.in/enforcement/orders/jun-2019/adjudication-order-in-respect-of-three-entities-in-the-matter-of-prism-medico-and-pharmacy-ltd-_43323.html')

Any help is appreciated.

Thanks in advance!!

1 Answer

0 votes
by (25.1k points)

Firstly initialize the browser. Then send a get request  to the website.Then fine the tag for url and get the src attribute. Then send a get request to the acquired url, then find element download button by xpath and click on that button using the click(method)

import os

browser = webdriver.Chrome(os.getcwd()+'/chromedriver')

browser.get('https://www.sebi.gov.in/enforcement/orders/jun-2019/adjudication-order-in-respect-of-three-entities-in-the-matter-of-prism-medico-and-pharmacy-ltd-_43323.html')

pdf_url = browser.find_element_by_tag_name('iframe').get_attribute("src")

browser.get(pdf_url)

download = browser.find_element_by_xpath('//*[@id="download"]')

download.click()

If you want to learn python, visit this python tutorial and Python course.

If you are interested to learn Selenium on a much deeper level and want to become a professional in the testing domain, check out Intellipaat’s Selenium course!

Browse Categories

...