如何在python中使用selenium下载pdf文件

时间:2018-06-04 09:46:17

标签: python python-2.7 google-chrome selenium

我正在尝试使用selenium从网站下载pdf文件,但我可以打开文件,但不能使用代码自动下载。

代码:

            chrome_profile = webdriver.ChromeOptions()
            profile = {"download.default_directory": "C:\Users\Downloads",
               "download.prompt_for_download": False,
               "download.directory_upgrade": True,
               "plugins.plugins_disabled": ["Chrome PDF Viewer"]}
            chrome_profile.add_experimental_option("prefs", profile)

请建议。提前谢谢

2 个答案:

答案 0 :(得分:3)

现在解决上述问题

    prefs = {"plugins.always_open_pdf_externally": True}
    chromeOptions.add_experimental_option("prefs",prefs)
    chromedriver = "\path\chromedriver.exe"
    driver = webdriver.Chrome(executable_path=chromedriver, chrome_options=chromeOptions)

答案 1 :(得分:0)

将此信息放入代码的个人资料部分,它会禁用Chrome PDF查看器并触发自动下载

"plugins.plugins_disabled": ["Chrome PDF Viewer"]