0

我想知道自动化测试是否有任何方法可以下载文件(在我的情况下为 excel 和 pdf)并使用 selenium Web 驱动程序保存在所需的位置。我尝试使用 Firefox 配置文件,但没有奏效。测试运行时,会弹出窗口询问是否打开或保存文件。因此,当我们单击一个按钮时,我不希望显示窗口弹出窗口,而是自动允许它在所需位置(本地和 Selenium 服务器上)下载我们正在使用 C# 编写测试。附件是弹出窗口。有人可以帮忙吗?

在此处输入图像描述

public static IWebDriver Build(SeleniumInstanceContext context)
    {
        IWebDriver instance;            
        var capabilities = new DesiredCapabilities();
        var profile = CreateFirefoxProfile();

        //Pass the Firefox profile to be used by RemoteWebDriver
        capabilities.SetCapability(FirefoxDriver.ProfileCapabilityName, profile.ToBase64String());

        switch (context.TestingBrowser.ToUpperInvariant())
        {
            case "CHROME":
                instance = context.SeleniumEnvironment.ToUpper() == "REMOTEWEBDRIVER"
                    ? new RemoteWebDriver(new Uri(context.SeleniumServerUrl), DesiredCapabilities.Chrome())
                    : new ChromeDriver();
                break;
            case "IE":
                instance = context.SeleniumEnvironment.ToUpper() == "REMOTEWEBDRIVER"
                    ? new RemoteWebDriver(new Uri(context.SeleniumServerUrl),
                        DesiredCapabilities.InternetExplorer())
                    : new InternetExplorerDriver();
                break;
            default:
                instance = context.SeleniumEnvironment.ToUpper() == "REMOTEWEBDRIVER"
                    ? new RemoteWebDriver(new Uri(context.SeleniumServerUrl), capabilities,
                        TimeSpan.FromMinutes(5))
                    : new FirefoxDriver(profile);
                break;
        }

        return instance;
    }

[![enter image description here][1]][1]public static FirefoxProfile CreateFirefoxProfile()
    {
        //Create FireFox Profile object
        var profile = new FirefoxProfile();

        //Set Location to store files after downloading.
        const string path = "C:\\Users\\abc.xyz\\Downloads";
        profile.SetPreference("browser.download.dir", path);
        profile.SetPreference("browser.download.folderList", 2);

        //Set Preference to not show file download confirmation dialogue using MIME types Of different file extension types.
        profile.SetPreference("browser.helperApps.neverAsk.saveToDisk", "text/csv,application/x-msexcel,application/excel,application/x-excel,application/excel,application/x-excel,application/excel,application/vnd.ms-excel,application/x-excel,application/x-msexcel,application/csv");
        //profile.SetPreference("browser.helperApps.neverAsk.openFile", "application/octet-stream");

        //profile.SetPreference("browser.download.manager.showWhenStarting", false);
        profile.SetPreference("pdfjs.disabled", true);

        profile.SetPreference("browser.download.alertOnEXEOpen", false);
        profile.SetPreference("browser.download.manager.focusWhenStarting", false);
        profile.SetPreference("browser.helperApps.alwaysAsk.force", true);
        profile.SetPreference("browser.download.manager.alertOnEXEOpen", false);
        profile.SetPreference("browser.download.manager.closeWhenDone", false);
        profile.SetPreference("browser.download.manager.showAlertOnComplete", false);
        profile.SetPreference("browser.download.manager.useWindow", false);

        return profile;
    }
4

2 回答 2

0

您似乎忘记在browser.helperApps.neverAsk.saveToDisk首选项中包含一些 MIME 类型。

以下是 、 和 文件扩展名的.xlsMIME.xlsx类型.pdf

  • .xls-application/excel
  • .xls-application/vnd.ms-excel
  • .xls-application/x-excel
  • .xls-application/x-msexcel
  • .xlsx-application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
  • .pdf-application/pdf

参考:


.xls要隐藏、.xlsx和文件扩展名的弹出窗口.pdf,请添加 MIME 类型,用逗号分隔:

string[] mimeTypes = new string[]
{
    // .xls
    "application/excel",
    "application/vnd.ms-excel",
    "application/x-excel",
    "application/x-msexcel",

    // .xlsx
    "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",

    // .pdf
    "application/pdf"
};

FirefoxProfile profile = new FirefoxProfile();
profile.SetPreference("browser.helperApps.neverAsk.saveToDisk",
    string.Join(",", mimeTypes));
于 2017-07-11T21:30:22.520 回答
0
  1. 加载您用于测试的 Firefox 配置文件,尝试下载任何 .xls 文件 - 您将看到此弹出窗口。
  2. 勾选复选框并下载您希望在自动测试中下载的文件。

下次您在自动测试中使用此配置文件打开 Firefox 时,将下载这些 xls 文件而不会弹出任何窗口

于 2017-07-11T16:52:52.390 回答