3

我的硒测试因 WebDriverException 失败:未知错误:无法在Selenoid发送和附加西里尔文名称“золотыещенки.png”的文件时无法解压缩“文件” 。

unknown error: unable to unzip 'file'
from unknown error: archive error: (unknown error: could not unzip archive), entry error: (unknown error: invalid data descriptor signature)
  (Session info: chrome=62.0.3202.62)
  (Driver info: chromedriver=2.33.506092 (733a02544d189eeb751fe0d7ddca79a0ee28cce4),platform=Linux 4.13.9-coreos x86_64) (WARNING: The server did not provide any stacktrace information)
Command duration or timeout: 0 milliseconds

在此之前,它成功地附加了所有其他带有纬度名称和数字的文件。

在代码中它看起来像这样:$(locator).shouldBe(Condition.visible).scrollTo().sendKeys(file.getAbsolutePath());

4

1 回答 1

2

UPD:这已在所有图像中修复 - 生成了所有 UTF-8 编码。应该使用最新的图像。


这是因为浏览器图像中缺少西里尔编码。临时解决方法是使用以下 Dockerfile 手动构建映像:

FROM selenoid/vnc:chrome_60.0

USER root
RUN locale-gen ru_RU.UTF-8
ENV LANG ru_RU.UTF-8
ENV LANGUAGE ru:en
ENV LC_ALL ru_RU.UTF-8
USER selenium
于 2017-11-01T08:52:30.367 回答