gpt4 book ai didi

java - 如何使用 webdriver 在 firefox 中处理下载 .xlsx 文件,其中弹出窗口默认为 'Open with' 单选按钮而不是 'Save file'

转载 作者:行者123 更新时间:2023-11-30 06:56:35 25 4
gpt4 key购买 nike

我有一个带有链接的网络应用程序。单击此链接时,它会打开弹出窗口,要求使用特定应用程序打开文件。

我编写了以下用于创建 firefox 配置文件的代码,它适用于其他文件扩展名,但不适用于 .xlsx 文件。

        profile.setEnableNativeEvents(true);

profile.setPreference("browser.download.folderList", 2);
profile.setPreference("browser.download.manager.showWhenStarting", false);
profile.setPreference("browser.download.dir", System.getProperty("user.dir")+"\\src\\com\\Download");
profile.setPreference("browser.download.downloadDir", System.getProperty("user.dir")+"\\src\\com\\Download");
profile.setPreference("browser.download.defaultFolder", System.getProperty("user.dir")+"\\src\\com\\Download");
profile.setPreference("browser.download.manager.closeWhenDone", true);
profile.setPreference("pdfjs.disabled", true);
profile.setPreference("browser.helperApps.alwaysAsk.force", false);
profile.setPreference("browser.helperApps.neverAsk.saveToDisk", "application/xls, application/zip,text/csv,application/msword,application/excel,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/pdf," +
"application/vnd.ms-excel,application/msword,application/unknown,application/vnd.openxmlformats-officedocument.wordprocessingml.document");

下面是我得到的弹出窗口:- window popup

  • 我认为,由于窗口弹出窗口未默认为“保存文件”单选按钮,因此 firefox 配置文件无法正常工作。有什么解决方案可以处理这种情况?

最佳答案

这个偏好对我有用。

profile.setPreference("browser.helperApps.neverAsk.saveToDisk", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");

下表记录了处理 Office 2007 文档时可用的 HTTP MIME 类型:

外部 MIME 类型

  • .doc 应用程序/msword
  • .dot 应用程序/msword
  • .docx 应用程序/vnd.openxmlformats-officedocument.wordprocessingml.document
  • .dotx 应用程序/vnd.openxmlformats-officedocument.wordprocessingml.template
  • .docm 应用程序/vnd.ms-word.document.macroEnabled.12
  • .dotm 应用程序/vnd.ms-word.template.macroEnabled.12
  • .xls 应用程序/vnd.ms-excel
  • .xlt 应用程序/vnd.ms-excel
  • .xla 应用程序/vnd.ms-excel
  • .xlsx application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
  • .xltx application/vnd.openxmlformats-officedocument.spreadsheetml.template
  • .xlsm 应用程序/vnd.ms-excel.sheet.macroEnabled.12
  • .xltm 应用程序/vnd.ms-excel.template.macroEnabled.12
  • .xlam 应用程序/vnd.ms-excel.addin.macroEnabled.12
  • .xlsb 应用程序/vnd.ms-excel.sheet.binary.macroEnabled.12
  • .ppt 应用程序/vnd.ms-powerpoint
  • .pot 应用程序/vnd.ms-powerpoint
  • .pps 应用程序/vnd.ms-powerpoint
  • .ppa 应用程序/vnd.ms-powerpoint
  • .pptx 应用程序/vnd.openxmlformats-officedocument.presentationml.presentation
  • .potx 应用程序/vnd.openxmlformats-officedocument.presentationml.template
  • .ppsx 应用程序/vnd.openxmlformats-officedocument.presentationml.slideshow
  • .ppam 应用程序/vnd.ms-powerpoint.addin.macroEnabled.12
  • .pptm 应用程序/vnd.ms-powerpoint.presentation.macroEnabled.12
  • .potm 应用程序/vnd.ms-powerpoint.template.macroEnabled.12
  • .ppsm 应用程序/vnd.ms-powerpoint.slideshow.macroEnabled.12

关于java - 如何使用 webdriver 在 firefox 中处理下载 .xlsx 文件,其中弹出窗口默认为 'Open with' 单选按钮而不是 'Save file',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34271396/

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