You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Getting Exception on File Upload to RemoteWebDriver
System.TypeInitializationException : The type initializer for 'System.IO.Compression.ZipStorer' threw an exception.
----> System.NotSupportedException : No data is available for encoding 437
There is a related selenium issue: SeleniumHQ/selenium#4816 SeleniumHQ/selenium#4816 (comment)
A workaround should be included into Aquality.Selenium:
reference the System.Text.Encoding System.Text.Encoding.CodePages Nuget package and somewhere before Encoding.GetEncoding(437) gets called, make sure to call Encoding.RegisterProvider(CodePagesEncodingProvider.Instance).
Also we should use LocalFileDetector (as already used in java) for RemoteBrowserFactory
The text was updated successfully, but these errors were encountered:
Getting Exception on File Upload to RemoteWebDriver
System.TypeInitializationException : The type initializer for 'System.IO.Compression.ZipStorer' threw an exception.
----> System.NotSupportedException : No data is available for encoding 437
There is a related selenium issue:
SeleniumHQ/selenium#4816
SeleniumHQ/selenium#4816 (comment)
A workaround should be included into Aquality.Selenium:
Also we should use LocalFileDetector (as already used in java) for RemoteBrowserFactory
The text was updated successfully, but these errors were encountered: