gpt4 book ai didi

python - Selenium 网络驱动程序 : How to Download a PDF File with Python?

转载 作者:太空宇宙 更新时间:2023-11-04 10:01:52 26 4
gpt4 key购买 nike

我正在使用 selenium webdriver 自动下载多个 PDF 文件。我得到 PDF 预览窗口(见下文),现在我想下载文件。我如何使用 Google Chrome 作为浏览器来完成此操作?

Dialog Box

最佳答案

试试这个代码,它对我有用。

options = webdriver.ChromeOptions()
options.add_experimental_option('prefs', {
"download.default_directory": "C:/Users/XXXX/Desktop", #Change default directory for downloads
"download.prompt_for_download": False, #To auto download the file
"download.directory_upgrade": True,
"plugins.always_open_pdf_externally": True #It will not show PDF directly in chrome
})
self.driver = webdriver.Chrome(options=options)

关于python - Selenium 网络驱动程序 : How to Download a PDF File with Python?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43149534/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com