FirefoxWebdriver没有数据可用于编码437 [英] FirefoxWebdriver No data is available for encoding 437

查看:141
本文介绍了FirefoxWebdriver没有数据可用于编码437的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想创建一个FirefoxWebdriver,但出现以下错误

I want to create a FirefoxWebdriver but get the following error

  Message: 
    Initialization method Sma.Ldx.Systemtest.Ui.Tests.IbaTest.TestInitialize
 threw exception. System.TypeInitializationException: The type initializer for 
'System.IO.Compression.ZipStorer' threw an exception. ---> 
System.NotSupportedException: No data is available for encoding 437. For 
information on defining a custom encoding, see the documentation for the 
Encoding.RegisterProvider method..

它是netstandard2.0库,在dotnet core 2.2上运行 有人可以帮忙吗?

it is a netstandard2.0 lib and runs on dotnet core 2.2 Can anybody help?

我尝试导入System.Text.Encoding.CodePages并尝试使用System.Text.Encoding.RegisterProvider(System.Text.CodePagesEncodingProvider.Instance),但dotnetcore2.2中不支持此功能

I tried to import System.Text.Encoding.CodePages and try to use System.Text.Encoding.RegisterProvider(System.Text.CodePagesEncodingProvider.Instance) but this is not supported in dotnetcore2.2

private static IWebDriver InitializeFirefoxDriver(bool headless, bool remote, Uri seleniumHubUri, PlatformType platform, string locale, string webDriverPath)
        {
            var options = new FirefoxOptions()
            {
                Profile = new FirefoxProfile()
                {
                    AcceptUntrustedCertificates = true,
                    AssumeUntrustedCertificateIssuer = true
                },
            };
            options.AddArgument($"--lang={locale}");
            if (headless || remote)
            {
                options.AddArgument("-headless");
            }
            options.PlatformName = platform.ToString();
            FirefoxDriverService service = FirefoxDriverService.CreateDefaultService(webDriverPath, "geckodriver.exe");
            service.Start();
            return remote ? new RemoteWebDriver(seleniumHubUri, options) : new FirefoxDriver(service, options);
        }

除了Firefox浏览器之外,我可以启动,但出现编码错误.

I except the Firefox Browser to start but get an encoding error.

推荐答案

添加NuGet包System.Text.Encoding.CodePages

在创建FirefoxDriver对象之前,请执行以下操作:

Before Creating the FirefoxDriver object, do this:

 CodePagesEncodingProvider.Instance.GetEncoding(437);
 Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);

这篇关于FirefoxWebdriver没有数据可用于编码437的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆