Watir - 当文件以html打开时如何保存pdf文件

Posted

技术标签:

【中文标题】Watir - 当文件以html打开时如何保存pdf文件【英文标题】:Watir - How to save a pdf file when the file opens in html 【发布时间】:2014-07-06 16:45:08 【问题描述】:

当我点击一个链接时,pdf 在浏览器中打开。我的测试要求我将 pdf 保存到桌面上。

我能够找到打开 pdf 但无法保存的新窗口。至于保存 pdf,我必须将鼠标悬停在底部以获取 pdf 图标,或者我必须转到文件 - > 另存为以保存 pdf。

【问题讨论】:

【参考方案1】:

这里是 sample code 在 Firefox 中如何做到这一点

download_directory = "#Dir.pwd/downloads"
download_directory.gsub!("/", "\\") if Selenium::WebDriver::Platform.windows?

profile = Selenium::WebDriver::Firefox::Profile.new
profile['browser.download.folderList'] = 2 # custom location
profile['browser.download.dir'] = download_directory
profile['browser.helperApps.neverAsk.saveToDisk'] = "application/pdf"

b = Watir::Browser.new :firefox, :profile => profile

和铬

download_directory = "#Dir.pwd/downloads"
download_directory.gsub!("/", "\\") if  Selenium::WebDriver::Platform.windows?

profile = Selenium::WebDriver::Chrome::Profile.new
profile['download.prompt_for_download'] = false
profile['download.default_directory'] = download_directory

b = Watir::Browser.new :chrome, :profile => profile

使用 ie 你可能不得不做这样的事情:

f = open('sample.pdf')
begin
    http.request_get('/sample.pdf') do |resp|
        resp.read_body do |segment|
            f.write(segment)
        end
    end
ensure
    f.close()
end

Code Ref

【讨论】:

IE 浏览器需要这个。如果有什么办法,请告诉我。 我尝试使用 File -> Save AS 工具栏保存 pdf。所以发送密钥来点击文件 -> 另存为 @browser.send_keys([:control,:shift,'s']) --Control+Shift+S @browser.send_keys([:alt,'fa']) --Alt+F+A 键

以上是关于Watir - 当文件以html打开时如何保存pdf文件的主要内容,如果未能解决你的问题,请参考以下文章

如何在新选项卡中打开时重命名保存在服务器上的pdf

当“受控文件夹访问”打开时如何检查 .NET 中的目录写入权限

如何在写入期间锁定文件以使其在打开时无法读取?

[HTML/Firefox]:当网站打开时,Firefox 要求下载页面

调试模式打开时的 Django 和静态文件

怎样设置Word下次打开时跳转到上次阅读的位置